From 938a88551f6ddefb7f696b738696c8ce2d8e0e36 Mon Sep 17 00:00:00 2001 From: Cheng Hann Gan Date: Sat, 20 Nov 2021 10:47:46 -0600 Subject: Labeled more symbols (#77) * Labeled more symbols * Fixed comment typo * Renamed some functions --- src/dungeon_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dungeon_util.c') 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); } -- cgit v1.2.3