diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 22:48:44 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 22:48:44 +0100 |
commit | bd0db15eaf467546207484008a70ea102f8100e7 (patch) | |
tree | f59a84dc1846605506f2aa11381a4c31f4d14930 /src | |
parent | ffb12588e9af6435306a1cdfabc1bf67e8e33dfd (diff) | |
download | gold-mine-run-bd0db15eaf467546207484008a70ea102f8100e7.tar.gz gold-mine-run-bd0db15eaf467546207484008a70ea102f8100e7.zip |
Change the order of rendering
The "READY?" should be on top.
Diffstat (limited to 'src')
-rw-r--r-- | src/game.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -257,11 +257,13 @@ next_stage: wait_vsync(); blit_copy_all(); + entities_sort(); + blit_target(TARGET_SCREEN); - put_text(136, 100, "READY?", 1); + wait_vsync(); - entities_sort(); entities_draw(); + put_text(136, 100, "READY?", 1); /* wait some time */ wait_frames(96); |