diff options
| author | Henny022p <info@henny022.de> | 2022-03-21 06:08:01 +0100 |
|---|---|---|
| committer | Henny022p <info@henny022.de> | 2022-03-21 06:08:01 +0100 |
| commit | 02f68affe593d532ac0671603a15e9ed6801ac3b (patch) | |
| tree | a3b8e214e880142d294054cc1a732816e0f017aa /src/game.c | |
| parent | 35eef68d96aaea94df6910942188129ecfc7e54d (diff) | |
added RoomID enum
Diffstat (limited to 'src/game.c')
| -rw-r--r-- | src/game.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |
