fix panic example

This commit is contained in:
Corwin Kuiper 2021-03-08 03:48:13 +00:00
parent b33cde9f63
commit b05c339cbf

View file

@ -9,7 +9,7 @@ use gba::display;
fn main(_argc: isize, _argv: *const *const u8) -> isize { fn main(_argc: isize, _argv: *const *const u8) -> isize {
let mut gba = gba::Gba::new(); 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(); let mut input = gba::input::ButtonController::new();
loop { loop {