diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-06-25 14:09:56 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-06-25 14:09:56 -0400 |
commit | 06eb89d903d2b73c6aeb364300c9f2f85188fdc5 (patch) | |
tree | 6cfaeb59c57a26e7d19cec17acf0c4417ed21740 | |
parent | 9ed402c4a2a77f4cdaf7d913bad787c9ac088493 (diff) |
"┘" + 1 == " "
Using X+1 makes sense when X is the last control character in a contiguous group, but "┘" is not, so we can use the first non-control character
-rw-r--r-- | engine/pokemon/correct_nick_errors.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/pokemon/correct_nick_errors.asm b/engine/pokemon/correct_nick_errors.asm index 335540cfe..80e712f2e 100644 --- a/engine/pokemon/correct_nick_errors.asm +++ b/engine/pokemon/correct_nick_errors.asm @@ -70,5 +70,5 @@ CorrectNickErrors:: db "<ROUTE>", "<GREEN>" + 1 db "<ENEMY>", "<ENEMY>" + 1 db "<MOM>", "<TM>" + 1 - db "<ROCKET>", "┘" + 1 + db "<ROCKET>", " " db -1 ; end |