mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Make affine map indexes u16
This commit is contained in:
parent
974b08989a
commit
2614fd1af0
|
@ -432,7 +432,7 @@ impl AffineMap {
|
|||
vram: &mut VRamManager,
|
||||
pos: impl Into<Vector2D<u16>>,
|
||||
tileset: &TileSet<'_>,
|
||||
tile_id: u8,
|
||||
tile_index: u16,
|
||||
) {
|
||||
let pos = self.map_size().gba_offset(pos.into());
|
||||
let colours = self.colours();
|
||||
|
@ -442,8 +442,6 @@ impl AffineMap {
|
|||
vram.remove_tile(old_tile.tile_index(colours));
|
||||
}
|
||||
|
||||
let tile_index = tile_id as u16;
|
||||
|
||||
let new_tile = if tile_index != TRANSPARENT_TILE_INDEX {
|
||||
let new_tile_idx = vram.add_tile(tileset, tile_index);
|
||||
Tile::new(new_tile_idx, TileSetting(0))
|
||||
|
|
Loading…
Reference in a new issue