summaryrefslogtreecommitdiff
path: root/2d/game-loop.scm
diff options
context:
space:
mode:
Diffstat (limited to '2d/game-loop.scm')
-rw-r--r--2d/game-loop.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/2d/game-loop.scm b/2d/game-loop.scm
index 6d32bcb..1a9b518 100644
--- a/2d/game-loop.scm
+++ b/2d/game-loop.scm
@@ -144,7 +144,7 @@
(set-gl-matrix-mode (matrix-mode modelview))
(gl-load-identity)
(gl-clear (clear-buffer-mask color-buffer depth-buffer))
- (scene-draw current-scene)
+ (draw-scene current-scene)
(SDL:gl-swap-buffers)
(accumulate-fps! dt))
@@ -156,7 +156,7 @@ is the unused accumulator time."
(begin
(handle-events)
(update-agenda)
- (scene-update current-scene)
+ (update-scene current-scene)
(update (- accumulator tick-interval)))
accumulator))