diff --git a/changelog.txt b/changelog.txt index 6346ad0..8df5985 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,8 @@ DD Mmm 17 - 1.49 +fix: /bind was treating single-character key names in a case sensitive manner + add: new CNQ3 download system that uses checksums to get the right pak files the CNQ3 download system will use the WorldSpawn map server for inexact queries (when loading demos or using /dlmap) when the CNQ3 map server doesn't have the file diff --git a/code/client/cl_keys.cpp b/code/client/cl_keys.cpp index ecfae75..8427666 100644 --- a/code/client/cl_keys.cpp +++ b/code/client/cl_keys.cpp @@ -629,7 +629,7 @@ static int Key_StringToKeynum( const char* str ) return -1; } if ( !str[1] ) { - return str[0]; + return tolower( str[0] ); } // check for hex code