You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user