diff options
Diffstat (limited to 'src/lua/embed/scripts/boot.lua.h')
-rw-r--r-- | src/lua/embed/scripts/boot.lua.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lua/embed/scripts/boot.lua.h b/src/lua/embed/scripts/boot.lua.h index a42f7d4..4b97b69 100644 --- a/src/lua/embed/scripts/boot.lua.h +++ b/src/lua/embed/scripts/boot.lua.h @@ -18,7 +18,7 @@ jin.config.vsync = jin.config.vsync or true jin.config.title = jin.config.title or ("jin v" .. jin.version) jin.config.resizable = jin.config.resizable or false jin.config.fullscreen = jin.config.fullscreen or false -jin.config.fps = jin.config.fps or 60 +jin.config.fps = jin.config.fps or 60 jin.config.icon = jin.config.icon or "" ------------------------------------------------------------------------- @@ -49,9 +49,9 @@ function jin.core.run() end step() dt = jin.time.getDelta() - call(jin.core.onUpdate, dt) - jin.graphics.clear() - call(jin.core.onDraw) + call(jin.core.onUpdate, dt) + jin.graphics.clear() + call(jin.core.onDraw) jin.graphics.present() jin.time.sleep(0.001) end |