Don't need this .into() either

This commit is contained in:
Gwilym Inzani 2024-02-21 13:01:03 +00:00
parent 74451f819c
commit b357acbba8

View file

@ -40,7 +40,7 @@ fn main(mut gba: agb::Gba) -> ! {
bg.set_tile(
&mut vram,
(x as u16, y as u16).into(),
(x as u16, y as u16),
&dynamic_tile.tile_set(),
dynamic_tile.tile_setting(),
);