diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-24 13:13:15 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-24 13:13:15 -0400 |
commit | 9ce922493398842b2e91383a08098f20249d44c7 (patch) | |
tree | 6822a2dbefef7c9416b272f389aad7f6d737e0e3 /engine/pokemon/correct_nick_errors.asm | |
parent | 5f2d3bedb9aef983f1d3cdbca1028b2e08be4cd4 (diff) |
Minor cleanup of wram and text/charmap before continuing.
Diffstat (limited to 'engine/pokemon/correct_nick_errors.asm')
-rw-r--r-- | engine/pokemon/correct_nick_errors.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/pokemon/correct_nick_errors.asm b/engine/pokemon/correct_nick_errors.asm index c8056251..44748a00 100644 --- a/engine/pokemon/correct_nick_errors.asm +++ b/engine/pokemon/correct_nick_errors.asm @@ -1,4 +1,4 @@ -CorrectNickErrors:: ; 677e (1:677e) +CorrectNickErrors:: push bc push de ld b, MON_NAME_LENGTH @@ -43,11 +43,11 @@ CorrectNickErrors:: ; 677e (1:677e) ; table defining which characters are actually text commands ; format: ; ≥ < - db "<NULL>", $04 + 1 - db "<PLAY_G>", $18 + 1 - db $1d, "%" + 1 - db $35, "<GREEN>" + 1 + db "<NULL>", "ガ" + db "<PLAY_G>", "<JP_18>" + 1 + db "<NI>", "<NO>" + 1 + db "<ROUTE>", "<GREEN>" + 1 db "<ENEMY>", "<ENEMY>" + 1 - db $49, "<TM>" + 1 + db "<MOM>", "<TM>" + 1 db "<ROCKET>", "┘" + 1 db -1 ; end |