summaryrefslogtreecommitdiff
path: root/2d/sprite.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-01-07 20:00:03 -0500
committerDavid Thompson <dthompson2@worcester.edu>2014-01-07 20:00:03 -0500
commit9b52e9c83c56eef77037fdd7c31e8874e96d4f6a (patch)
treeae837ff395fc3abdd8d9b1c33f712333784e5e64 /2d/sprite.scm
parent01c04ba62ac137b15ff512353bb72cd4efae5cac (diff)
Add new scheduling procedures and rename existing ones.
* 2d/agenda.scm (agenda-schedule, schedule): Rename. (agenda-schedule-interval, schedule-interval): Rename. (schedule-next, schedule-every): New procedures. * 2d/sprite.scm: Use schedule-every. * 2d/time.scm (time-every): Use schedule-interval.
Diffstat (limited to '2d/sprite.scm')
-rw-r--r--2d/sprite.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/2d/sprite.scm b/2d/sprite.scm
index 445fcff..a0f13bf 100644
--- a/2d/sprite.scm
+++ b/2d/sprite.scm
@@ -302,7 +302,7 @@ currently bound."
(hash-clear! animated-sprites))
;; Update animated sprites upon every update.
-(agenda-schedule-interval update-animated-sprites!)
+(schedule-every update-animated-sprites!)
(export make-sprite
sprite?