Skip to content

Commit

Permalink
lilypad: Fix function name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
turtleli committed Feb 13, 2016
1 parent f423549 commit c47501d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/LilyPad/XInputEnum.cpp
Expand Up @@ -263,7 +263,7 @@ void EnumXInputDevices() {
if (hMod) {
if ((pXInputEnable = (_XInputEnable) GetProcAddress(hMod, "XInputEnable")) &&
((pXInputGetStateEx = (_XInputGetStateEx) GetProcAddress(hMod, (LPCSTR)100)) || // Try Ex version first
(pXInputGetStateEx = (_XInputGetStateEx) GetProcAddress(hMod, "XinputGetState")))) {
(pXInputGetStateEx = (_XInputGetStateEx) GetProcAddress(hMod, "XInputGetState")))) {
pXInputGetExtended = (_XInputGetExtended)GetProcAddress(hMod, "XInputGetExtended");
pXInputSetState = (_XInputSetState) GetProcAddress(hMod, "XInputSetState");
}
Expand Down

0 comments on commit c47501d

Please sign in to comment.