Commit e7d1107f authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

dinput: Don't use strcasecmp.

parent df019afa
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
#include "wingdi.h" #include "wingdi.h"
#include "winternl.h"
#include "winuser.h" #include "winuser.h"
#include "winerror.h" #include "winerror.h"
#include "winreg.h" #include "winreg.h"
...@@ -211,9 +212,9 @@ static SysMouseImpl *alloc_device(REFGUID rguid, IDirectInputImpl *dinput) ...@@ -211,9 +212,9 @@ static SysMouseImpl *alloc_device(REFGUID rguid, IDirectInputImpl *dinput)
get_app_key(&hkey, &appkey); get_app_key(&hkey, &appkey);
if (!get_config_key(hkey, appkey, "MouseWarpOverride", buffer, sizeof(buffer))) if (!get_config_key(hkey, appkey, "MouseWarpOverride", buffer, sizeof(buffer)))
{ {
if (!strcasecmp(buffer, "disable")) if (!_strnicmp(buffer, "disable", -1))
newDevice->warp_override = WARP_DISABLE; newDevice->warp_override = WARP_DISABLE;
else if (!strcasecmp(buffer, "force")) else if (!_strnicmp(buffer, "force", -1))
newDevice->warp_override = WARP_FORCE_ON; newDevice->warp_override = WARP_FORCE_ON;
} }
if (appkey) RegCloseKey(appkey); if (appkey) RegCloseKey(appkey);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment