mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
fix that hyperspace roll is currently completely broken
This commit is contained in:
parent
d2daf695a6
commit
0b6b38705c
|
@ -64,7 +64,7 @@ pub(crate) fn load_description(
|
|||
|
||||
for y in 0..11 {
|
||||
for x in 0..8 {
|
||||
let tile_id = y * 8 + x + 8 * 11 * (face_id as u16 - 10);
|
||||
let tile_id = y * 8 + x + 8 * 11 * (face_id as u16 % 10);
|
||||
descriptions_map.set_tile(
|
||||
vram,
|
||||
(x, y).into(),
|
||||
|
|
Loading…
Reference in a new issue