mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Merge pull request #732 from Learath2/dd_pr_bindfix
Missed a case. Fixes #730
This commit is contained in:
commit
72e9571d57
|
@ -98,7 +98,7 @@ const char *CBinds::GetKey(const char *pBindStr)
|
|||
for(int KeyId = 0; KeyId < KEY_LAST; KeyId++)
|
||||
{
|
||||
const char *pBind = Get(KeyId);
|
||||
if(!pBind[0])
|
||||
if(!pBind)
|
||||
continue;
|
||||
|
||||
if(str_comp(pBind, pBindStr) == 0)
|
||||
|
|
Loading…
Reference in a new issue