=================== Key_Unbindall_f =================== */
| 999 | =================== |
| 1000 | */ |
| 1001 | void Key_Unbindall_f( void ) { |
| 1002 | for ( int i=0; i<MAX_KEYS; i++ ) { |
| 1003 | if ( kg.keys[i].binding ) |
| 1004 | Key_SetBinding( i, "" ); |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | /* |
| 1009 | =================== |
nothing calls this directly
no test coverage detected