mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 01:21:34 +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 y in 0..11 {
|
||||||
for x in 0..8 {
|
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(
|
descriptions_map.set_tile(
|
||||||
vram,
|
vram,
|
||||||
(x, y).into(),
|
(x, y).into(),
|
||||||
|
|
Loading…
Reference in a new issue