Uppercase MACRO and EQU(S) according to the style guide

This commit is contained in:
xCrystal
2017-12-28 13:23:44 +01:00
parent 9457679af8
commit 7beb497d3a
33 changed files with 425 additions and 425 deletions

View File

@@ -4,7 +4,7 @@ UNDERGROUND_DOOR_CLOSED3 EQU $3f
UNDERGROUND_DOOR_OPEN1 EQU $2d
UNDERGROUND_DOOR_OPEN2 EQU $3d
ugdoor: macro
ugdoor: MACRO
\1_YCOORD EQU \2
\1_XCOORD EQU \3
endm
@@ -26,7 +26,7 @@ endm
ugdoor UGDOOR_15, $12, $0a
ugdoor UGDOOR_16, $12, $0c
doorstate: macro
doorstate: MACRO
changeblock UGDOOR_\1_YCOORD, UGDOOR_\1_XCOORD, UNDERGROUND_DOOR_\2
endm