aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2019-02-28 23:06:37 +0100
committerRay <raysan5@gmail.com>2019-02-28 23:06:37 +0100
commit36fa0207f29a4f3e2ed1a8e4d541bcd14e09ff2b (patch)
treeecf58f4a3149e429dc8b6f9c02070453d49977e9 /src/core.c
parent50da9f623e1c2c70530653399a9acf1092e30a1d (diff)
downloadraylib-36fa0207f29a4f3e2ed1a8e4d541bcd14e09ff2b.tar.gz
raylib-36fa0207f29a4f3e2ed1a8e4d541bcd14e09ff2b.zip
Some spacing review
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index dc60eee4..4e195ec7 100644
--- a/src/core.c
+++ b/src/core.c
@@ -4321,7 +4321,7 @@ static void *EventThread(void *arg)
// Button parsing
if (event.type == EV_KEY)
{
- if((event.code == BTN_TOUCH) || (event.code == BTN_LEFT))
+ if ((event.code == BTN_TOUCH) || (event.code == BTN_LEFT))
{
currentMouseStateEvdev[MOUSE_LEFT_BUTTON] = event.value;
if (event.value > 0) gestureEvent.touchAction = TOUCH_DOWN;