diff options
-rw-r--r-- | Expand-tilesets-from-192-to-255-tiles.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Expand-tilesets-from-192-to-255-tiles.md b/Expand-tilesets-from-192-to-255-tiles.md index 28ef659..8249b05 100644 --- a/Expand-tilesets-from-192-to-255-tiles.md +++ b/Expand-tilesets-from-192-to-255-tiles.md @@ -501,11 +501,11 @@ Edit [mobile/mobile_41.asm](../blob/master/mobile/mobile_41.asm) again: Edit [engine/menus/naming_screen.asm](../blob/master/engine/menus/naming_screen.asm): ```diff --NAMINGSCREEN_BORDER EQUS "\"■\"" ; $60 -+NAMINGSCREEN_BORDER EQUS "\"■\"" ; $d7 - NAMINGSCREEN_MIDDLELINE EQUS "\"→\"" ; $eb --NAMINGSCREEN_UNDERLINE EQUS "\"<DOT>\"" ; $f2 -+NAMINGSCREEN_UNDERLINE EQUS "\"☎\"" ; $d9 +-NAMINGSCREEN_BORDER EQU "■" ; $60 ++NAMINGSCREEN_BORDER EQU "■" ; $d7 + NAMINGSCREEN_MIDDLELINE EQU "→" ; $eb +-NAMINGSCREEN_UNDERLINE EQU "<DOT>" ; $f2 ++NAMINGSCREEN_UNDERLINE EQU "☎" ; $d9 LoadNamingScreenGFX: ... @@ -518,6 +518,8 @@ Edit [engine/menus/naming_screen.asm](../blob/master/engine/menus/naming_screen. call FarCopyBytes ``` +(Older versions of pokecrystal before rgbds 0.3.8 can't understand constants like `X_VALUE EQU "X"`, so they have to use `X_VALUE EQUS "\"X\""` instead.) + Edit [engine/events/map_name_sign.asm](../blob/master/engine/events/map_name_sign.asm): ```diff |