summaryrefslogtreecommitdiff
path: root/include/message.h
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2022-03-22 01:36:08 +0200
committerTal Hayon <talhayon1@gmail.com>2022-03-22 01:36:08 +0200
commitdc5acb446e249de3cbfbc152ed7599d4cf15d5cc (patch)
tree3929d9c4f11342c1df56b65754b46dae569ad8c7 /include/message.h
parent495258646f7a0a9c443baf7dd059f32d5febba41 (diff)
Decompile the rest of text.c
Diffstat (limited to 'include/message.h')
-rw-r--r--include/message.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/message.h b/include/message.h
index d0fc84a9..4a450767 100644
--- a/include/message.h
+++ b/include/message.h
@@ -25,14 +25,17 @@ typedef struct {
extern Message gMessage;
typedef struct {
- u8 flags;
+ u8 unk00 : 1;
+ u8 unk01 : 4;
+ u8 unk05 : 2;
+ u8 unk06 : 1;
u8 code; // first byte read
u16 param; // second byte read
u16 extended; // ascii adjusted for jp chars
u16 _6;
u16 textIndex;
void* _c;
- u8 buf[32];
+ const u8* buf[8];
} Token;
typedef struct {