Fix missing space

This commit is contained in:
ubkp 2023-12-05 20:47:43 -03:00
parent 52821b4c34
commit 17f1ab706e

View File

@ -1094,7 +1094,7 @@ void PollInputEvents(void)
KeyboardKey key = ConvertScancodeToKey(event.key.keysym.scancode);
if (key != KEY_NULL) CORE.Input.Keyboard.currentKeyState[key] = 1;
if(event.key.repeat) CORE.Input.Keyboard.keyRepeatInFrame[key] = 1;
if (event.key.repeat) CORE.Input.Keyboard.keyRepeatInFrame[key] = 1;
// TODO: Put exitKey verification outside the switch?
if (CORE.Input.Keyboard.currentKeyState[CORE.Input.Keyboard.exitKey])