diff options
author | Cheng Hann Gan <chenghanngan.us@gmail.com> | 2021-11-20 10:47:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 08:47:46 -0800 |
commit | 938a88551f6ddefb7f696b738696c8ce2d8e0e36 (patch) | |
tree | 35a8d3954aa03fb00d061d7603d28af0111bb516 /src/code_8040094.c | |
parent | 13552719886449c45aa0a06caccb7d7491382d9c (diff) |
Labeled more symbols (#77)
* Labeled more symbols
* Fixed comment typo
* Renamed some functions
Diffstat (limited to 'src/code_8040094.c')
-rw-r--r-- | src/code_8040094.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code_8040094.c b/src/code_8040094.c index 608bbf4..4e30873 100644 --- a/src/code_8040094.c +++ b/src/code_8040094.c @@ -31,7 +31,7 @@ struct unk8049590 u16 unk4; }; -extern struct unk8049590 *sub_8049590(u32, u32); +extern struct unk8049590 *GetMapEntity(u32, u32); // Luminous Orb??? void sub_804002C(u32 param_1) @@ -47,7 +47,7 @@ void sub_804002C(u32 param_1) innerCounter = 0; iVar4 = iVar3 + 1; do { - iVar1 = sub_8049590(innerCounter, iVar3); + iVar1 = GetMapEntity(innerCounter, iVar3); iVar1->unk4 = iVar1->unk4 | 1; innerCounter++; } while (innerCounter < 0x38); |