summaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
authorjidoc01 <jidoc01@naver.com>2019-10-07 14:13:39 +0200
committerjidoc01 <jidoc01@naver.com>2019-10-07 14:13:39 +0200
commit14ac0d098d60b69e23fc31d95c196b553d5bbe11 (patch)
treed9ee46b66806569af89c798b7ab376e90652e238 /src/constants
parentd65df63f9b40ac9a8e6613f9e81e2d601b361260 (diff)
Clean up codes in animation
Now I will use only a tab(no 4 spaces) when a new line initiates a instruction or a macro. And for code alignment, I will use spaces(no tabs) between code and operands. Even though you could see aligned codes just with tabs in editors, some of environments, like a web, print them in various ways.
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/animation_constants.asm16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/constants/animation_constants.asm b/src/constants/animation_constants.asm
index 7060ea6..f326d5e 100644
--- a/src/constants/animation_constants.asm
+++ b/src/constants/animation_constants.asm
@@ -1,11 +1,11 @@
; Normal animations
-ANI_SPELL_MOVE EQU $01
-ANI_GET_HIT EQU $07
-ANI_THUNDER_SHOCK EQU $0a
-ANI_FURY_SWEEPES EQU $24
+ANIM_SPELL_MOVE EQU $01
+ANIM_GET_HIT EQU $07
+ANIM_THUNDER_SHOCK EQU $0a
+ANIM_FURY_SWEEPES EQU $24
; Special animations
-ANI_SHOW_DAMAGE EQU $09
-ANI_SHAKE1 EQU $fa
-ANI_SHAKE2 EQU $fb
-ANI_SHAKE3 EQU $fc \ No newline at end of file
+ANIM_SHOW_DAMAGE EQU $09
+ANIM_SHAKE1 EQU $fa
+ANIM_SHAKE2 EQU $fb
+ANIM_SHAKE3 EQU $fc \ No newline at end of file