summaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authorHenny022p <info@henny022.de>2022-03-21 06:08:01 +0100
committerHenny022p <info@henny022.de>2022-03-21 06:08:01 +0100
commit02f68affe593d532ac0671603a15e9ed6801ac3b (patch)
treea3b8e214e880142d294054cc1a732816e0f017aa /src/game.c
parent35eef68d96aaea94df6910942188129ecfc7e54d (diff)
added RoomID enum
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.c b/src/game.c
index a717ebd2..717d6b68 100644
--- a/src/game.c
+++ b/src/game.c
@@ -31,6 +31,7 @@
#include "itemMetaData.h"
#include "player.h"
#include "transitions.h"
+#include "roomid.h"
// Game task
@@ -195,7 +196,7 @@ typedef struct {
typedef struct {
u8 area;
- u8 room;
+ RoomID room : 8;
u8 _2;
u8 _3;
u16 x;