diff --git a/agb/examples/chicken.rs b/agb/examples/chicken.rs index f929c68..99bf4a0 100644 --- a/agb/examples/chicken.rs +++ b/agb/examples/chicken.rs @@ -55,7 +55,7 @@ pub fn main() -> ! { gfx.set_background_tilemap(0, &MAP_TILES); let mut background = gfx.get_background().unwrap(); - background.set_map(&MAP_MAP, 32, 32); + background.draw_full_map(&MAP_MAP, 32, 32); background.show(); let mut object = gba.display.object.get(); diff --git a/agb/examples/test_logo.rs b/agb/examples/test_logo.rs index 724c84f..1dcf049 100644 --- a/agb/examples/test_logo.rs +++ b/agb/examples/test_logo.rs @@ -21,8 +21,7 @@ pub fn main() -> ! { entries[tile_id as usize] = tile_id | (palette_entry << 12); } - back.set_map(&entries, 30, 20); - back.set_position(0, 0); + back.draw_full_map(&entries, 30, 20); back.show(); loop {} diff --git a/agb/src/display/example_logo.rs b/agb/src/display/example_logo.rs index de199d4..cd30d65 100644 --- a/agb/src/display/example_logo.rs +++ b/agb/src/display/example_logo.rs @@ -15,8 +15,7 @@ fn logo_display(gba: &mut crate::Gba) { entries[tile_id as usize] = tile_id | (palette_entry << 12); } - back.set_map(&entries, 30, 20); - back.set_position(0, 0); + back.draw_full_map(&entries, 30, 20); back.show(); crate::assert_image_output("gfx/test_logo.png");