diff options
author | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
commit | cf2acc100193f599b4521a961c9bff6a78be8217 (patch) | |
tree | 8d79a8a8f7f192ecabdd7a6c9fbfcdab7b5dffb8 /home/delay.asm | |
parent | adb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff) |
Use :: to export labels between objects.
This fixes the build.
Diffstat (limited to 'home/delay.asm')
-rw-r--r-- | home/delay.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/delay.asm b/home/delay.asm index 4e8b2147c..b9f84fcdf 100644 --- a/home/delay.asm +++ b/home/delay.asm @@ -1,4 +1,4 @@ -DelayFrame: ; 45a +DelayFrame:: ; 45a ; Wait for one frame ld a, 1 ld [VBlankOccurred], a @@ -13,7 +13,7 @@ DelayFrame: ; 45a ; 468 -DelayFrames: ; 468 +DelayFrames:: ; 468 ; Wait c frames call DelayFrame dec c |