diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-11-19 13:29:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 13:29:07 -0600 |
commit | 6acf6aed0486d090bf4f8e731189b9d4ad07dadb (patch) | |
tree | 14944f58ff26ce5d59ed1383e9550a6215cbc83e /src/string_util.c | |
parent | 8f2ddf2997041bc813a32ac604002fcbb987e3a0 (diff) | |
parent | 58a1bba059a74203edb5d8819bf7af7e1171877a (diff) |
Merge pull request #391 from DizzyEggg/frontier
Clean up bss/common/ewram symbols and decompile mossdeep
Diffstat (limited to 'src/string_util.c')
-rw-r--r-- | src/string_util.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/string_util.c b/src/string_util.c index 3fbf79d87..8ce9a97ed 100644 --- a/src/string_util.c +++ b/src/string_util.c @@ -2,7 +2,11 @@ #include "string_util.h" #include "text.h" -EWRAM_DATA u8 gUnknownStringVar[16] = {0}; +EWRAM_DATA u8 gStringVar1[0x100] = {0}; +EWRAM_DATA u8 gStringVar2[0x100] = {0}; +EWRAM_DATA u8 gStringVar3[0x100] = {0}; +EWRAM_DATA u8 gStringVar4[0x3E8] = {0}; +EWRAM_DATA static u8 sUnknownStringVar[16] = {0}; static const u8 sDigits[] = __("0123456789ABCDEF"); @@ -421,7 +425,7 @@ u8 *StringBraille(u8 *dest, const u8 *src) static const u8 *ExpandPlaceholder_UnknownStringVar(void) { - return gUnknownStringVar; + return sUnknownStringVar; } static const u8 *ExpandPlaceholder_PlayerName(void) |