| 426 | |
| 427 | |
| 428 | bool Bindings::InputMap::FindModKey(int& key, uint32& mods, Operation op) |
| 429 | { |
| 430 | for (int k = 0; k <= GLFW_KEY_LAST; k++) |
| 431 | { |
| 432 | uint32 m; |
| 433 | if (KeyTable[k].FindOperationMods(m, op)) |
| 434 | { |
| 435 | key = k; |
| 436 | mods = m; |
| 437 | return true; |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | return false; |
| 442 | } |
| 443 | |
| 444 | |
| 445 | void Bindings::InputMap::Read(tExpression expr) |
nothing calls this directly
no test coverage detected