summaryrefslogtreecommitdiff
path: root/src/object
diff options
context:
space:
mode:
authorHenny022p <info@henny022.de>2022-02-09 03:58:04 +0100
committerHenny022p <info@henny022.de>2022-02-09 03:58:04 +0100
commit3297dc905c55c86f17499b3ea895e9a5145d182f (patch)
treea3f45dee5d4b0e1f5c82b3e87b7252973c0a05a6 /src/object
parent61e780fb2ac13f534c395cf5559175c63568cde2 (diff)
some more documentation
Diffstat (limited to 'src/object')
-rw-r--r--src/object/deathFx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/deathFx.c b/src/object/deathFx.c
index 0179bded..4fe5ccb9 100644
--- a/src/object/deathFx.c
+++ b/src/object/deathFx.c
@@ -113,7 +113,7 @@ void sub_08081790(DeathFxObject* this) {
DeathFx_DropRandom9, DeathFx_DropRandom9, DeathFx_DropRandom9, DeathFx_DropRandom9,
DeathFx_DropRandom9, DeathFx_DropRandom9, DeathFx_DropRandom9, DeathFx_DropFixedItem,
};
- static const u8 gUnk_0811EC64[] = {
+ static const u8 DeathFx_EnemyDroptables[] = {
[OCTOROK] = 6,
[CHUCHU] = 6,
[LEEVER] = 6,
@@ -228,7 +228,7 @@ void sub_08081790(DeathFxObject* this) {
6,
};
if (this->parentId < 0xf0) {
- CreateRandomItemDrop(super, gUnk_0811EC64[this->parentId]);
+ CreateRandomItemDrop(super, DeathFx_EnemyDroptables[this->parentId]);
} else {
DeathFx_DropFunctions[this->parentId - 0xf0](this);
}