summaryrefslogtreecommitdiff
path: root/src/object/macroShoe.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/macroShoe.c
parent5049daabc59d113152143d123aea2798d9487a0c (diff)
document tile asm functions
Diffstat (limited to 'src/object/macroShoe.c')
-rw-r--r--src/object/macroShoe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object/macroShoe.c b/src/object/macroShoe.c
index 2d4b5ac2..574fcf20 100644
--- a/src/object/macroShoe.c
+++ b/src/object/macroShoe.c
@@ -39,9 +39,9 @@ void MacroShoe_Init(Entity* this) {
this->action = 1;
this->hitbox = (Hitbox*)MacroShoe_TypeHitboxes[this->type];
if (this->type2 == 1) {
- SetTile(0x4024, 0x410, 1);
- SetTile(0x4026, 0x411, 1);
- SetTile(0x4025, 0x412, 1);
+ SetBottomTile(0x4024, 0x410, 1);
+ SetBottomTile(0x4026, 0x411, 1);
+ SetBottomTile(0x4025, 0x412, 1);
}
}