From 7beb497d3aba7cd1bb34f2b1394bde80c1cd9807 Mon Sep 17 00:00:00 2001 From: xCrystal Date: Thu, 28 Dec 2017 13:23:44 +0100 Subject: Uppercase MACRO and EQU(S) according to the style guide --- macros/scripts/battle_commands.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'macros/scripts/battle_commands.asm') diff --git a/macros/scripts/battle_commands.asm b/macros/scripts/battle_commands.asm index 5ac9009ff..dc264b291 100644 --- a/macros/scripts/battle_commands.asm +++ b/macros/scripts/battle_commands.asm @@ -1,6 +1,6 @@ -command: macro +command: MACRO enum \1_command -\1 equs "db \1_command" +\1 EQUS "db \1_command" endm ; BattleCommandPointers indexes (see data/battle_command_pointers.asm) -- cgit v1.2.3 From 50fc9c3389ae8130d3670683f22f3e49555c57a3 Mon Sep 17 00:00:00 2001 From: xCrystal Date: Thu, 28 Dec 2017 22:31:16 +0100 Subject: endm -> ENDM --- macros/scripts/battle_commands.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'macros/scripts/battle_commands.asm') diff --git a/macros/scripts/battle_commands.asm b/macros/scripts/battle_commands.asm index dc264b291..5933740f0 100644 --- a/macros/scripts/battle_commands.asm +++ b/macros/scripts/battle_commands.asm @@ -1,7 +1,7 @@ command: MACRO enum \1_command \1 EQUS "db \1_command" -endm +ENDM ; BattleCommandPointers indexes (see data/battle_command_pointers.asm) enum_start 1 -- cgit v1.2.3