summaryrefslogtreecommitdiff
path: root/src/object/smokeParticle.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/smokeParticle.c
parent5049daabc59d113152143d123aea2798d9487a0c (diff)
document tile asm functions
Diffstat (limited to 'src/object/smokeParticle.c')
-rw-r--r--src/object/smokeParticle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object/smokeParticle.c b/src/object/smokeParticle.c
index ab50e2b8..4c24717a 100644
--- a/src/object/smokeParticle.c
+++ b/src/object/smokeParticle.c
@@ -74,14 +74,14 @@ void sub_080878CC(Entity* this) {
switch (GetTileType(pos, layer)) {
case 0x368:
case 0x367:
- sub_08008796(this, 3, x + itX, y + itY);
+ DoTileInteraction(this, 3, x + itX, y + itY);
break;
default:
- SetTile(0x4022, pos, layer);
+ SetBottomTile(0x4022, pos, layer);
break;
}
} else {
- sub_08008796(this, 3, x + itX, y + itY);
+ DoTileInteraction(this, 3, x + itX, y + itY);
}
}
}