| 318 | //============================================================================= |
| 319 | |
| 320 | void FKeyBindings::DoBind (const char *key, const char *bind) |
| 321 | { |
| 322 | int keynum = GetConfigKeyFromName (key); |
| 323 | if (keynum != 0) |
| 324 | { |
| 325 | Binds[keynum] = bind; |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | //============================================================================= |
| 330 | // |
no test coverage detected