diff options
| author | dannye <corrnondacqb@yahoo.com> | 2016-07-18 01:17:03 -0500 |
|---|---|---|
| committer | dannye <corrnondacqb@yahoo.com> | 2016-07-18 01:17:03 -0500 |
| commit | 80bae03975a84dadf080c79f52216866dd410cf8 (patch) | |
| tree | 282a30407e6d6f9e8aa6e665ebf0e826ccc79569 /main.asm | |
| parent | Remove the last address comments (diff) | |
| download | pokeyellow-80bae03975a84dadf080c79f52216866dd410cf8.tar.gz pokeyellow-80bae03975a84dadf080c79f52216866dd410cf8.tar.xz pokeyellow-80bae03975a84dadf080c79f52216866dd410cf8.zip | |
Clean up text commands
Diffstat (limited to 'main.asm')
| -rwxr-xr-x | main.asm | 21 |
1 files changed, 14 insertions, 7 deletions
@@ -1702,19 +1702,26 @@ TwoOptionMenuStrings: dw .NoYesMenu .NoYesMenu - db "NO",$4E,"YES@" + db "NO" + next "YES@" .YesNoMenu - db "YES",$4E,"NO@" + db "YES" + next "NO@" .NorthWestMenu - db "NORTH",$4E,"WEST@" + db "NORTH" + next "WEST@" .SouthEastMenu - db "SOUTH",$4E,"EAST@" + db "SOUTH" + next "EAST@" .NorthEastMenu - db "NORTH",$4E,"EAST@" + db "NORTH" + next "EAST@" .TradeCancelMenu - db "TRADE",$4E,"CANCEL@" + db "TRADE" + next "CANCEL@" .HealCancelMenu - db "HEAL",$4E,"CANCEL@" + db "HEAL" + next "CANCEL@" DisplayFieldMoveMonMenu: xor a |
