diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2024-01-06 16:14:12 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2024-01-06 16:15:34 +0100 |
| commit | 06dc15859867c7f2db22ea6e289e28ff12b0b6c9 (patch) | |
| tree | ae4991dfff60d689953033fb75345cc65628684a /include/room.h | |
| parent | aced0bef691dbc41bdd39b6e62662d2436877a4b (diff) | |
Rename vvv to actTile
Diffstat (limited to 'include/room.h')
| -rw-r--r-- | include/room.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/room.h b/include/room.h index 1623ef63..80cf8ab5 100644 --- a/include/room.h +++ b/include/room.h @@ -1,9 +1,9 @@ #ifndef ROOM_H #define ROOM_H -#include "global.h" #include "entity.h" #include "droptables.h" +#include "map.h" enum RoomTransition { TRANSITION_DEFAULT, @@ -56,7 +56,7 @@ typedef struct { /*0x28*/ union SplitWord bg3OffsetX; /*0x2C*/ union SplitWord bg3OffsetY; /*0x30*/ Entity* camera_target; - /*0x34*/ u32 unk_34; + /*0x34*/ u32 tileset; // TODO Should be MapDataDefinition*, but then SetupTileSet does not match. } RoomControls; extern RoomControls gRoomControls; |
