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/sprite-batch.scm | |
parent | 11cf5c63610e8bb858fa21ecea37196d9c8f17e4 (diff) |
Switch to high resolution timer.
Diffstat (limited to 'examples/sprite-batch.scm')
-rw-r--r-- | examples/sprite-batch.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sprite-batch.scm b/examples/sprite-batch.scm index 4b8d433..3aad219 100644 --- a/examples/sprite-batch.scm +++ b/examples/sprite-batch.scm @@ -31,7 +31,7 @@ (define (stats-message) (format #f "sprites: ~d fps: ~1,2f" num-sprites - (/ 1000.0 avg-frame-time))) + (/ 1.0 avg-frame-time))) (define stats-text (stats-message)) |