From b05c339cbfec19c531f91ef3339c20bfc6a8996e Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Mon, 8 Mar 2021 03:48:13 +0000 Subject: [PATCH] fix panic example --- examples/panic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/panic.rs b/examples/panic.rs index e8ec41e8..a454edb2 100644 --- a/examples/panic.rs +++ b/examples/panic.rs @@ -9,7 +9,7 @@ use gba::display; fn main(_argc: isize, _argv: *const *const u8) -> isize { let mut gba = gba::Gba::new(); - let mut bitmap = gba.display.bitmap3(); + let mut bitmap = gba.display.video.bitmap3(); let mut input = gba::input::ButtonController::new(); loop {