| 469 | } |
| 470 | |
| 471 | InputEventManager::VirtualMapData* InputEventManager::findVirtualMap(const char* description) |
| 472 | { |
| 473 | char desc[256]; |
| 474 | desc[0] = 0; |
| 475 | dStrncpy(desc, description, 255); |
| 476 | dStrlwr(desc); |
| 477 | |
| 478 | return mVirtualMap.retreive(desc); |
| 479 | } |
| 480 | |
| 481 | const char* InputEventManager::findVirtualMapDescFromCode(U32 code) |
| 482 | { |
no test coverage detected