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.
This commit is contained in:
mid-kid
2018-07-17 23:11:17 +02:00
parent 1fc7430a2b
commit ffa63c51df
2 changed files with 61 additions and 56 deletions

View File

@@ -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