summaryrefslogtreecommitdiff
path: root/src/object/figurineDevice.c
diff options
context:
space:
mode:
authortheo3 <arisstephenson2@gmail.com>2023-12-31 17:29:08 -0800
committertheo3 <arisstephenson2@gmail.com>2023-12-31 17:34:02 -0800
commit37ac9cb0fb2d9ccb64286bab2cdf648e6f2541c5 (patch)
tree1556b8aba35a82f1cc0d538b93251a1b401f32f5 /src/object/figurineDevice.c
parent5049daabc59d113152143d123aea2798d9487a0c (diff)
document tile asm functions
Diffstat (limited to 'src/object/figurineDevice.c')
-rw-r--r--src/object/figurineDevice.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object/figurineDevice.c b/src/object/figurineDevice.c
index d975556a..d21c51cd 100644
--- a/src/object/figurineDevice.c
+++ b/src/object/figurineDevice.c
@@ -305,9 +305,9 @@ void sub_08087F58(FigurineDeviceEntity* this) {
switch (super->type) {
case 0:
case 1:
- SetTile(0x4022, this->unk_78 - 1, 1);
- SetTile(0x4022, this->unk_78, 1);
- SetTile(0x4022, this->unk_78 + 1, 1);
+ SetBottomTile(0x4022, this->unk_78 - 1, 1);
+ SetBottomTile(0x4022, this->unk_78, 1);
+ SetBottomTile(0x4022, this->unk_78 + 1, 1);
break;
}
}