summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2023-10-29 22:36:28 -0400
committerDavid Thompson <dthompson2@worcester.edu>2023-10-29 22:36:28 -0400
commite228ec32336df9e9e017c61f0f2302653d043598 (patch)
treef9aa87ba232006842a45d2914318ce9a41134275
parent42c564158ac913be6a0d078ae513f2a31bed76f4 (diff)
Oops, start at the beginning!
-rw-r--r--game.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/game.scm b/game.scm
index 4eec072..cb36f3e 100644
--- a/game.scm
+++ b/game.scm
@@ -1843,12 +1843,12 @@
(music-play)
(set! *game-state* 'play)
(scheduler-reset! *scheduler*)
- ;; (set! *scroll* 0.0)
- (set! *scroll* (* 140.0 tile-height))
+ (set! *scroll* 0.0)
+ ;; (set! *scroll* (* 140.0 tile-height))
(set! *last-scroll* 0.0)
- ;; (set! *last-row-scanned* (level-height level))
- (set! *last-row-scanned* (- (level-height level)
- 140))
+ (set! *last-row-scanned* (level-height level))
+ ;; (set! *last-row-scanned* (- (level-height level)
+ ;; 140))
(bullet-pool-reset! player-bullets)
(bullet-pool-reset! enemy-bullets)
(enemy-pool-reset! enemies)