diff options
author | David Thompson <dthompson2@worcester.edu> | 2020-12-15 17:59:09 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2020-12-15 17:59:09 -0500 |
commit | 8726cc42e3e7e5e6f34f7328898e35ed207bfb08 (patch) | |
tree | f2599a60f404b086c1054befa07106c3f6d1320d /examples/tiled.scm | |
parent | 11cf5c63610e8bb858fa21ecea37196d9c8f17e4 (diff) |
Switch to high resolution timer.
Diffstat (limited to 'examples/tiled.scm')
-rw-r--r-- | examples/tiled.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tiled.scm b/examples/tiled.scm index 0f7c4fa..c528f74 100644 --- a/examples/tiled.scm +++ b/examples/tiled.scm @@ -16,7 +16,7 @@ (define text "0, 0") (define (stats-message) (format #f "fps: ~1,2f" - (/ 1000.0 avg-frame-time))) + (/ 1.0 avg-frame-time))) (define start-time 0.0) (define avg-frame-time 16) (define stats-text (stats-message)) |