summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorRay <[email protected]>2018-09-14 12:47:31 +0200
committerRay <[email protected]>2018-09-14 12:47:31 +0200
commit5b09630d45ec5bfaa301c5dc0f27c0d44f57bbb8 (patch)
tree2fabc5873d6333e41f17a24d6306d8a330e0f1c1 /src/core.c
parentf32e23c11bcfca1dc54db09b35aba549f952242c (diff)
downloadraylib-5b09630d45ec5bfaa301c5dc0f27c0d44f57bbb8.tar.gz
raylib-5b09630d45ec5bfaa301c5dc0f27c0d44f57bbb8.zip
Update mini_al to v0.8.8
Some minor tweaks around
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 3cd75f64..92d966e7 100644
--- a/src/core.c
+++ b/src/core.c
@@ -886,7 +886,7 @@ void EndDrawing(void)
// Wait for some milliseconds...
if (frameTime < targetTime)
{
- Wait( (float)(targetTime - frameTime)*1000.0f);
+ Wait((float)(targetTime - frameTime)*1000.0f);
currentTime = GetTime();
double extraTime = currentTime - previousTime;