mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-13 01:29:16 +00:00
Fix management issue
This commit is contained in:
parent
0cf2c8505e
commit
dc80884ab5
|
@ -867,7 +867,8 @@ bool IsThisJoystickBlacklisted(int i)
|
|||
|
||||
const char* joyname = glfwGetJoystickName(i);
|
||||
|
||||
if (strncmp(joyname, gSelectedJoystickName, strlen(gSelectedJoystickName)) == 0)
|
||||
if (gSelectedJoystickName[0] != '\0' &&
|
||||
strncmp(joyname, gSelectedJoystickName, strlen(gSelectedJoystickName)) == 0)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue