diff options
| author | Tal Hayon <talhayon1@gmail.com> | 2022-05-08 23:49:52 +0300 |
|---|---|---|
| committer | Tal Hayon <talhayon1@gmail.com> | 2022-05-08 23:49:52 +0300 |
| commit | ffdec50c76bfbcc6a090537002085f0a94e0979d (patch) | |
| tree | 31c3564889ead779e2f8c41677e2be8107345f68 /include | |
| parent | 854e623bf9b5c9c2478dcea5578a754f69436b57 (diff) | |
Match sub_08018BB4 and adjust types
Diffstat (limited to 'include')
| -rw-r--r-- | include/room.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/room.h b/include/room.h index 747379b6..cb3a456f 100644 --- a/include/room.h +++ b/include/room.h @@ -190,15 +190,17 @@ typedef struct { typedef struct { u8 type; - u8 _1; + u8 localFlag; u8 _2; u8 _3; - u16 _4; + u16 tilePos; u8 _6; u8 _7; } TileEntity; extern TileEntity gSmallChests[8]; +extern TileEntity gUnk_080FEAC8[]; + typedef enum { NONE, ROOM_VISIT_MARKER, @@ -230,7 +232,7 @@ void LoadRoomEntityList(EntityData* listPtr); bool32 LoadFixedGFX(Entity*, u32); void UnloadGFXSlots(Entity*); -void sub_0804B3C4(void*); +void sub_0804B3C4(TileEntity*); void sub_0804B0B0(u32 arg0, u32 arg1); void DoExitTransition(const ScreenTransitionData* data); |
