diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-17 12:18:53 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-17 12:18:53 +0100 |
commit | e4b1975a1fd47cd8920f903bd208879a9ebb4042 (patch) | |
tree | 41f13421bb40cda899fd228b364e8ef7ddbe66f6 /src | |
parent | 20d95a3a156b8d903581d76359522ef9cd51e492 (diff) | |
download | gold-mine-run-e4b1975a1fd47cd8920f903bd208879a9ebb4042.tar.gz gold-mine-run-e4b1975a1fd47cd8920f903bd208879a9ebb4042.zip |
Don't over-draw
Diffstat (limited to 'src')
-rw-r--r-- | src/game.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |