From 3f7ee3a806d965fae70fd98f2cd1af13a2e4cf0b Mon Sep 17 00:00:00 2001 From: Cheng Hann Gan Date: Fri, 15 Oct 2021 18:30:33 -0400 Subject: Decomped entityExists() (#64) --- include/dungeon_entity.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/dungeon_entity.h') diff --git a/include/dungeon_entity.h b/include/dungeon_entity.h index 6b11b8a..12bb3da 100644 --- a/include/dungeon_entity.h +++ b/include/dungeon_entity.h @@ -229,8 +229,7 @@ struct DungeonEntityData // Used for Pokémon, items, and traps. struct DungeonEntity { - /* 0x0 */ u8 entityType; - u8 fill1[0x4 - 0x1]; + /* 0x0 */ u32 entityType; /* 0x4 */ s16 posWorldX; /* 0x6 */ s16 posWorldY; /* 0x8 */ s16 prevPosWorldX; @@ -282,6 +281,7 @@ struct DungeonEntity enum EntityType { + ENTITY_NONE = 0, ENTITY_POKEMON = 1, ENTITY_ITEM = 2, ENTITY_TRAP = 3 -- cgit v1.2.3