aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-08-31 10:27:29 +0200
committerraysan5 <raysan5@gmail.com>2016-08-31 10:27:29 +0200
commita9ab516dae83d95a8701160bb7dcc72917e2d2ab (patch)
tree132ae134dae801b1f0367306ff6113d1f47c51af /src/core.c
parentd27709b1f20f3630354990f30aaf70442cb176f3 (diff)
downloadraylib-a9ab516dae83d95a8701160bb7dcc72917e2d2ab.tar.gz
raylib-a9ab516dae83d95a8701160bb7dcc72917e2d2ab.zip
Formatting tweaks
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 81c2942a..b9ffe87b 100644
--- a/src/core.c
+++ b/src/core.c
@@ -2451,7 +2451,7 @@ static EM_BOOL EmscriptenInputCallback(int eventType, const EmscriptenTouchEvent
printf("%s, numTouches: %d %s%s%s%s\n", emscripten_event_type_to_string(eventType), event->numTouches,
event->ctrlKey ? " CTRL" : "", event->shiftKey ? " SHIFT" : "", event->altKey ? " ALT" : "", event->metaKey ? " META" : "");
- for(int i = 0; i < event->numTouches; ++i)
+ for (int i = 0; i < event->numTouches; ++i)
{
const EmscriptenTouchPoint *t = &event->touches[i];