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