diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-06-20 23:12:11 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-06-20 23:12:11 +0100 |
commit | 81fff6679ec6c04714291b10809b2811f546481b (patch) | |
tree | 74e8a83a3a47e4129bf44f345a1d9a8017c4cc14 | |
parent | b4dd0c8956f1c81836e4f3020efe2f85b3d91902 (diff) | |
download | gold-mine-run-81fff6679ec6c04714291b10809b2811f546481b.tar.gz gold-mine-run-81fff6679ec6c04714291b10809b2811f546481b.zip |
Erase the screen before rendering the map
-rw-r--r-- | src/game.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -77,6 +77,8 @@ void run_game() hud = HUD_ALL; + blit_erase(0); + map_init(binary_stage_start); map_render(); |