summaryrefslogtreecommitdiff
path: root/src/dungeon_util.c
diff options
context:
space:
mode:
authorCheng Hann Gan <chenghanngan.us@gmail.com>2021-11-20 10:47:46 -0600
committerGitHub <noreply@github.com>2021-11-20 08:47:46 -0800
commit938a88551f6ddefb7f696b738696c8ce2d8e0e36 (patch)
tree35a8d3954aa03fb00d061d7603d28af0111bb516 /src/dungeon_util.c
parent13552719886449c45aa0a06caccb7d7491382d9c (diff)
Labeled more symbols (#77)
* Labeled more symbols * Fixed comment typo * Renamed some functions
Diffstat (limited to 'src/dungeon_util.c')
-rw-r--r--src/dungeon_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dungeon_util.c b/src/dungeon_util.c
index 94cd327..f70148a 100644
--- a/src/dungeon_util.c
+++ b/src/dungeon_util.c
@@ -12,7 +12,7 @@ struct unk8049590
u8 unk8;
};
-extern struct unk8049590 *sub_8049590(s16, s16);
+extern struct unk8049590 *GetMapEntity(s16, s16);
bool8 EntityExists(struct DungeonEntity *entity)
{
@@ -60,5 +60,5 @@ struct MapTile *sub_8045114(struct DungeonEntity *entity)
struct unk8049590 *sub_8045128(struct DungeonEntity *entity)
{
- return sub_8049590(entity->posWorldX, entity->posWorldY);
+ return GetMapEntity(entity->posWorldX, entity->posWorldY);
}