diff options
| author | abcboy101 <16735361+abcboy101@users.noreply.github.com> | 2025-12-30 12:07:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-30 12:07:40 -0500 |
| commit | 772ec10339684ebdb3fcd9fec549b74e213d2a3d (patch) | |
| tree | 82da46c0af98be9449d5aee661bf66c69d633832 | |
| parent | Convert some PNG graphics to 2-bit grayscale (#143) (diff) | |
| download | pokeyellow-772ec10339684ebdb3fcd9fec549b74e213d2a3d.tar.gz pokeyellow-772ec10339684ebdb3fcd9fec549b74e213d2a3d.tar.xz pokeyellow-772ec10339684ebdb3fcd9fec549b74e213d2a3d.zip | |
Identify characters in `_OakSpeechText2B` and `Printer_GetMonStats.IDNo` (#144)
| -rw-r--r-- | data/text/text_3.asm | 4 | ||||
| -rw-r--r-- | engine/printer/printer2.asm | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/data/text/text_3.asm b/data/text/text_3.asm index bb8302b4..a4a3c883 100644 --- a/data/text/text_3.asm +++ b/data/text/text_3.asm @@ -450,7 +450,9 @@ _OakSpeechText2A:: text_end _OakSpeechText2B:: - text $51,"For some people," + text_start + + para "For some people," line "#MON are" cont "pets. Others use" cont "them for fights." diff --git a/engine/printer/printer2.asm b/engine/printer/printer2.asm index 586dbbb4..b7cabbf8 100644 --- a/engine/printer/printer2.asm +++ b/engine/printer/printer2.asm @@ -165,7 +165,7 @@ Printer_GetMonStats: db "OT/@" .IDNo: - db $73, "№/@" + db "<ID>№/@" .Stats: db "ATTACK" |
