From 898b06110f36cb6fb1948bd8779d010221ca0179 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Mon, 14 Feb 2022 20:20:25 +0000 Subject: [PATCH] Correctly commit --- examples/the-hat-chooses-the-wizard/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/the-hat-chooses-the-wizard/src/main.rs b/examples/the-hat-chooses-the-wizard/src/main.rs index e081e6e3..73f3aa2b 100644 --- a/examples/the-hat-chooses-the-wizard/src/main.rs +++ b/examples/the-hat-chooses-the-wizard/src/main.rs @@ -807,6 +807,7 @@ fn main(mut agb: agb::Gba) -> ! { } } + world_display.commit(); world_display.show(); object.enable(); @@ -835,6 +836,7 @@ fn main(mut agb: agb::Gba) -> ! { &mut vram, ); + world_display.commit(); world_display.show(); music_box.before_frame(&mut mixer);