summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2019-02-16 14:04:21 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2019-02-16 14:04:21 -0500
commit68714a6059390543d1fb238b6bac391900b084c0 (patch)
treebbb4562f0e93bbfd7652603b5b47aff5e92f46c1
parent6b06176726de26e4bd9fc35ace0dd8407036f645 (diff)
X_VALUE EQU "X"
-rw-r--r--Expand-tilesets-from-192-to-255-tiles.md12
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