mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-27 12:14:20 +01:00
CHAR_SPECIAL_F7 constant
Preface for string decompilation
This commit is contained in:
parent
ef18d3b8ec
commit
e8b1059345
@ -65,6 +65,7 @@
|
|||||||
#define CHAR_x 0xEC
|
#define CHAR_x 0xEC
|
||||||
#define CHAR_y 0xED
|
#define CHAR_y 0xED
|
||||||
#define CHAR_z 0xEE
|
#define CHAR_z 0xEE
|
||||||
|
#define CHAR_SPECIAL_F7 0xF7
|
||||||
#define CHAR_SPECIAL_F9 0xF9
|
#define CHAR_SPECIAL_F9 0xF9
|
||||||
#define CHAR_COLON 0xF0
|
#define CHAR_COLON 0xF0
|
||||||
#define CHAR_PROMPT_SCROLL 0xFA // waits for button press and scrolls dialog
|
#define CHAR_PROMPT_SCROLL 0xFA // waits for button press and scrolls dialog
|
||||||
|
@ -32,7 +32,7 @@ u8 *UnkTextUtil_StringExpandPlaceholders(u8 *dest, const u8 *src)
|
|||||||
{
|
{
|
||||||
while (*src != EOS)
|
while (*src != EOS)
|
||||||
{
|
{
|
||||||
if (*src != 0xF7)
|
if (*src != CHAR_SPECIAL_F7)
|
||||||
{
|
{
|
||||||
*dest++ = *src++;
|
*dest++ = *src++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user