aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-07-17 12:18:53 +0100
committerJuan J. Martinez <jjm@usebox.net>2023-07-17 12:18:53 +0100
commite4b1975a1fd47cd8920f903bd208879a9ebb4042 (patch)
tree41f13421bb40cda899fd228b364e8ef7ddbe66f6 /src/game.c
parent20d95a3a156b8d903581d76359522ef9cd51e492 (diff)
downloadgold-mine-run-e4b1975a1fd47cd8920f903bd208879a9ebb4042.tar.gz
gold-mine-run-e4b1975a1fd47cd8920f903bd208879a9ebb4042.zip
Don't over-draw
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.c b/src/game.c
index 40dfb7b..8f837a7 100644
--- a/src/game.c
+++ b/src/game.c
@@ -273,9 +273,9 @@ next_stage:
wait_frames(96);
/* erase the READY? text */
+ Rect ready = { 136, 100, 184, 8 };
wait_vsync();
- blit_copy_all();
-
+ blit_copy(&ready);
entities_draw();
timer_start(GAME_TIME_MAX, &clock_updated);