| 402 | } |
| 403 | |
| 404 | const char *CInput::KeyName(int Key) const |
| 405 | { |
| 406 | dbg_assert(Key >= KEY_FIRST && Key < KEY_LAST, "Key invalid: %d", Key); |
| 407 | return g_aaKeyStrings[Key]; |
| 408 | } |
| 409 | |
| 410 | int CInput::FindKeyByName(const char *pKeyName) const |
| 411 | { |
no outgoing calls
no test coverage detected