diff options
author | YamaArashi <shadow962@live.com> | 2016-05-27 15:08:48 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-05-30 02:19:25 -0700 |
commit | 0ebfe95d65fc2852a6b7f0528a2a114de7fe698e (patch) | |
tree | a20b2e0e839661df88664d6547841a3a79e07222 /include/global.h | |
parent | 1d8ca2c1b995be87bb78dcf9bdfdc1d924a48979 (diff) |
text.c
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index b4a88ef5f..21b1e41af 100644 --- a/include/global.h +++ b/include/global.h @@ -7,6 +7,9 @@ #define REVISION 0 #endif +// Prevent cross-jump optimization. +#define BLOCK_CROSS_JUMP asm(""); + extern u8 gStringVar1[]; extern u8 gStringVar2[]; extern u8 gStringVar3[]; @@ -42,7 +45,9 @@ struct SaveBlock2 u8 playTimeSeconds; u8 playTimeVBlanks; u8 optionsButtonMode; - u8 filler[0x84]; + u8 optionsTextSpeed:3; + u8 optionsUnk:5; + u8 filler[0x83]; struct Time localTimeOffset; }; |