Key bind string was not working as intended

This commit is contained in:
OM 2023-05-21 02:11:02 +02:00
parent 526ab8071c
commit 103debcf6b

View file

@ -521,7 +521,7 @@ Key_GetKeysForCommand
void Key_GetKeysForCommand( const char *command, int *key1, int *key2 ) {
int i;
*key1 = *key2 = 0;
*key1 = *key2 = -1;
for( i = 0; i < K_LASTKEY; i++ ) {
if( !keys[ i ].binding ) {