| 220 | //============================================================================= |
| 221 | |
| 222 | const char *KeyName (int key) |
| 223 | { |
| 224 | static char name[5]; |
| 225 | |
| 226 | if (KeyNames[key]) |
| 227 | return KeyNames[key]; |
| 228 | |
| 229 | mysnprintf (name, countof(name), "Key_%d", key); |
| 230 | return name; |
| 231 | } |
| 232 | |
| 233 | //============================================================================= |
| 234 | // |
no outgoing calls
no test coverage detected