summaryrefslogtreecommitdiff
path: root/src/object/macroShoe.c
diff options
context:
space:
mode:
authoroctorock <79596758+octorock@users.noreply.github.com>2023-06-24 00:19:33 +0200
committeroctorock <79596758+octorock@users.noreply.github.com>2023-06-24 00:19:33 +0200
commitf89bb66911372a067041b66d50ac8462b7e0bd97 (patch)
tree5c7516fcf3e30a3aaf4e63c4a28a42e7c66f4471 /src/object/macroShoe.c
parentf9da6344273ac86d6fd9219fac2710c968eeab37 (diff)
Create enums for Vvvs and MetaTiles
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..fc9e2d00 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);
+ SetMetaTile(0x4024, 0x410, 1);
+ SetMetaTile(0x4026, 0x411, 1);
+ SetMetaTile(0x4025, 0x412, 1);
}
}