From bd0db15eaf467546207484008a70ea102f8100e7 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sat, 15 Jul 2023 22:48:44 +0100 Subject: Change the order of rendering The "READY?" should be on top. --- src/game.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index 06cea08..609299f 100644 --- a/src/game.c +++ b/src/game.c @@ -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); -- cgit v1.2.3