summaryrefslogtreecommitdiff
path: root/src/dungeon_util.c
diff options
context:
space:
mode:
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);
}