diff options
author | Pokeglitch <pokeglitchx@gmail.com> | 2018-06-18 09:01:29 -0400 |
---|---|---|
committer | Pokeglitch <pokeglitchx@gmail.com> | 2018-06-18 09:01:29 -0400 |
commit | e7af9f4f5a1a0bc7140449b8ccc3d50447a9e6cd (patch) | |
tree | 247352e539112185a346c8dfc442e257d7f98f53 | |
parent | 966b29e8116218a6ac409d1fa253a7f1fd6c4fc2 (diff) |
added newline at end of some files
-rwxr-xr-x | constants/script_constants.asm | 1 | ||||
-rwxr-xr-x | macros/queue.asm | 2 | ||||
-rwxr-xr-x | macros/scripts.asm | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/constants/script_constants.asm b/constants/script_constants.asm index d2bb335..15a08c0 100755 --- a/constants/script_constants.asm +++ b/constants/script_constants.asm @@ -15,3 +15,4 @@ SCRIPT_FINISHED_F EQU 7 SCRIPT_FINISHED_MASK EQU 1 << SCRIPT_FINISHED_F
SCRIPT_SUCCESS EQU $f
SCRIPT_FAIL EQU 0
+
diff --git a/macros/queue.asm b/macros/queue.asm index ac862e6..c868dc8 100755 --- a/macros/queue.asm +++ b/macros/queue.asm @@ -14,4 +14,4 @@ far_queue: MACRO ld hl, \1
ld a, BANK(\1)
call QueueScript
-ENDM
\ No newline at end of file +ENDM
diff --git a/macros/scripts.asm b/macros/scripts.asm index 2a2e303..73ad461 100755 --- a/macros/scripts.asm +++ b/macros/scripts.asm @@ -11,4 +11,4 @@ ENDM set_script: MACRO
ld a, \1ScriptID
ld [wFieldMoveScriptID], a
-ENDM
\ No newline at end of file +ENDM
|