diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-07-17 23:11:17 +0200 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-07-18 10:55:30 +0200 |
commit | ffa63c51df4d954e5fd9af99f376e1a4837b9dad (patch) | |
tree | 24063690bafbbfaa18e43defa5f96e1fd06cc44e /macros/scripts/text.asm | |
parent | 1fc7430a2baa2835f4dad4676a3e7ae513275a7d (diff) |
Clean up TX_ commands
Some of the TX_ commands didn't use the TX_ prefix for their
constants, and the label names were inconsistent. I've chosen to adopt
the `TextCommand_` prefix as opposed to `Text_`, as it has a clear
difference in namespace compared to the possibly-used `Text_` namespace
for actual dialogue text.
Diffstat (limited to 'macros/scripts/text.asm')
-rw-r--r-- | macros/scripts/text.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macros/scripts/text.asm b/macros/scripts/text.asm index bff18c7ea..d1fec35db 100644 --- a/macros/scripts/text.asm +++ b/macros/scripts/text.asm @@ -46,9 +46,9 @@ text_low: MACRO db TX_LOW ENDM - enum WAIT_BUTTON ; $06 + enum TX_WAIT_BUTTON ; $06 text_waitbutton: MACRO - db WAIT_BUTTON + db TX_WAIT_BUTTON ENDM enum TX_SCROLL ; $07 @@ -56,9 +56,9 @@ text_scroll: MACRO db TX_SCROLL ENDM - enum START_ASM ; $08 + enum TX_START_ASM ; $08 start_asm: MACRO - db START_ASM + db TX_START_ASM ENDM enum TX_NUM ; $09 |