summaryrefslogtreecommitdiff
path: root/src/manager/lightRayManager.c
diff options
context:
space:
mode:
authoroctorock <79596758+octorock@users.noreply.github.com>2024-01-06 14:59:48 +0100
committeroctorock <79596758+octorock@users.noreply.github.com>2024-01-06 15:01:44 +0100
commitaced0bef691dbc41bdd39b6e62662d2436877a4b (patch)
treee90f9fd8e4c4c3471c2fb246bb1372974294b469 /src/manager/lightRayManager.c
parentc3b771a20923b335bbea2ab97a68ac29d04fcc43 (diff)
Rename metaTiles
Now the 16x16 tiles are just called tiles and the 8x8 tiles are called subTiles.
Diffstat (limited to 'src/manager/lightRayManager.c')
-rw-r--r--src/manager/lightRayManager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/manager/lightRayManager.c b/src/manager/lightRayManager.c
index 8a6a75b9..4a6c4227 100644
--- a/src/manager/lightRayManager.c
+++ b/src/manager/lightRayManager.c
@@ -215,9 +215,9 @@ void sub_08057450(LightRayManager* this) {
y >>= 2;
gScreen.bg3.yOffset = y & 0x3f;
- gScreen.bg3.tilemap = &gBG3Buffer[(y / 0x40) << 8];
- if (this->unk_34 != gScreen.bg3.tilemap) {
- this->unk_34 = gScreen.bg3.tilemap;
+ gScreen.bg3.subTileMap = &gBG3Buffer[(y / 0x40) << 8];
+ if (this->unk_34 != gScreen.bg3.subTileMap) {
+ this->unk_34 = gScreen.bg3.subTileMap;
gScreen.bg3.updated = 1;
}