summaryrefslogtreecommitdiff
path: root/home/delay.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-02-01 20:26:39 -0500
committeryenatch <yenatch@gmail.com>2014-02-01 20:26:39 -0500
commitcf2acc100193f599b4521a961c9bff6a78be8217 (patch)
tree8d79a8a8f7f192ecabdd7a6c9fbfcdab7b5dffb8 /home/delay.asm
parentadb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff)
Use :: to export labels between objects.
This fixes the build.
Diffstat (limited to 'home/delay.asm')
-rw-r--r--home/delay.asm4
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