summaryrefslogtreecommitdiff
path: root/examples/tiled.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2020-12-15 17:59:09 -0500
committerDavid Thompson <dthompson2@worcester.edu>2020-12-15 17:59:09 -0500
commit8726cc42e3e7e5e6f34f7328898e35ed207bfb08 (patch)
treef2599a60f404b086c1054befa07106c3f6d1320d /examples/tiled.scm
parent11cf5c63610e8bb858fa21ecea37196d9c8f17e4 (diff)
Switch to high resolution timer.
Diffstat (limited to 'examples/tiled.scm')
-rw-r--r--examples/tiled.scm2
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))