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 /include/transitions.h | |
| parent | 35eef68d96aaea94df6910942188129ecfc7e54d (diff) | |
added RoomID enum
Diffstat (limited to 'include/transitions.h')
| -rw-r--r-- | include/transitions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/transitions.h b/include/transitions.h index 4f7a3bbd..a28cab49 100644 --- a/include/transitions.h +++ b/include/transitions.h @@ -1,6 +1,7 @@ #ifndef TMC_TRANSITIONS_H #define TMC_TRANSITIONS_H #include "global.h" +#include "roomid.h" typedef struct Transition { u8 warp_type; @@ -11,7 +12,7 @@ typedef struct Transition { u16 endY; u8 shape; u8 area; - u8 room; + RoomID room : 8; u8 height; u8 transition_type; u8 facing_direction; |
