mirror of https://github.com/encounter/SDL.git
Fixed build warning
This commit is contained in:
parent
f6bcfa0175
commit
3a77b42de7
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue