Fixed build warning

This commit is contained in:
Sam Lantinga 2016-10-12 18:45:56 -07:00
parent ebf3f850ae
commit 11f5755737

View file

@ -200,7 +200,7 @@ HIDCallback(void *context, IOReturn result, void *sender, IOHIDValueRef value)
|| IOHIDElementGetUsage(elem) != kHIDUsage_KeyboardCapsLock) { || IOHIDElementGetUsage(elem) != kHIDUsage_KeyboardCapsLock) {
return; return;
} }
int pressed = IOHIDValueGetIntegerValue(value); CFIndex pressed = IOHIDValueGetIntegerValue(value);
SDL_SendKeyboardKey(pressed ? SDL_PRESSED : SDL_RELEASED, SDL_SCANCODE_CAPSLOCK); SDL_SendKeyboardKey(pressed ? SDL_PRESSED : SDL_RELEASED, SDL_SCANCODE_CAPSLOCK);
} }