diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-11-19 01:03:14 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-11-19 01:03:14 +0100 |
commit | 95d3c180cc13b228dc10e6503b4a30c60f164f48 (patch) | |
tree | 47c07d0629df8edd2861607d045b2a88db8ee8e8 /src/string_util.c | |
parent | 963989d760a09eab46607efe1cbc1029f00e1842 (diff) |
clean up variables in files
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) |