summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-18 18:03:28 +0100
committerRay <[email protected]>2020-02-18 18:03:28 +0100
commitb18940d3c6ff12054b89ed41b3b2fe83e3c4ce69 (patch)
tree7a1b9064bb763d93377a3852d0b6ab9495f6e609 /src/core.c
parent3f25c52a29fb99598ed5ca0846350fae63274882 (diff)
downloadraylib-b18940d3c6ff12054b89ed41b3b2fe83e3c4ce69.tar.gz
raylib-b18940d3c6ff12054b89ed41b3b2fe83e3c4ce69.zip
Remove spaces
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index 0277cebe..2c314112 100644
--- a/src/core.c
+++ b/src/core.c
@@ -4660,11 +4660,11 @@ static void InitEvdevInput(void)
CORE.Input.Touch.position[i].x = -1;
CORE.Input.Touch.position[i].y = -1;
}
-
+
// Reset keypress buffer
CORE.Input.Keyboard.lastKeyPressed.Head = 0;
CORE.Input.Keyboard.lastKeyPressed.Tail = 0;
-
+
// Reset keyboard key state
for (int i = 0; i < 512; i++) CORE.Input.Keyboard.currentKeyState[i] = 0;