diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-02-17 21:11:05 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-17 21:11:05 +0100 |
commit | fe28e119720c008569833e0acad86d8a15ee8391 (patch) | |
tree | 3d8fa2386161ca31bf7cfb6d3d5e0c110544af4e /src/constants/text_constants.asm | |
parent | a1a2541c9895539082c2d42a25aca7e77b1bd953 (diff) |
More style cleaning up
Diffstat (limited to 'src/constants/text_constants.asm')
-rw-r--r-- | src/constants/text_constants.asm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/constants/text_constants.asm b/src/constants/text_constants.asm index 674037e..062f5e4 100644 --- a/src/constants/text_constants.asm +++ b/src/constants/text_constants.asm @@ -6,15 +6,15 @@ TX_RAM1 EQU $09 TX_RAM2 EQU $0B TX_RAM3 EQU $0C -text EQUS "db TX_START," -line EQUS "db TX_LINE," +text EQUS "db TX_START, " +line EQUS "db TX_LINE, " done EQUS "db TX_END" -TX_FIRE EQUS "$05,$01" -TX_GRASS EQUS "$05,$02" -TX_LIGHTNING EQUS "$05,$03" -TX_WATER EQUS "$05,$04" -TX_FIGHTING EQUS "$05,$05" -TX_PSYCHIC EQUS "$05,$06" -TX_COLORLESS EQUS "$05,$07" -TX_LVL EQUS "$05,$11" +TX_FIRE EQUS "$05, $01" +TX_GRASS EQUS "$05, $02" +TX_LIGHTNING EQUS "$05, $03" +TX_WATER EQUS "$05, $04" +TX_FIGHTING EQUS "$05, $05" +TX_PSYCHIC EQUS "$05, $06" +TX_COLORLESS EQUS "$05, $07" +TX_LVL EQUS "$05, $11" |