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/window.asm | |
parent | adb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff) |
Use :: to export labels between objects.
This fixes the build.
Diffstat (limited to 'home/window.asm')
-rw-r--r-- | home/window.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/home/window.asm b/home/window.asm index b5b08e147..66c666340 100644 --- a/home/window.asm +++ b/home/window.asm @@ -1,4 +1,4 @@ -ResetWindow: ; 2dba +ResetWindow:: ; 2dba call Function1fbf ld a, [hROMBank] @@ -16,7 +16,7 @@ ResetWindow: ; 2dba ; 2dcf -Function2dcf: ; 2dcf +Function2dcf:: ; 2dcf ld a, [hOAMUpdate] push af ld a, $1 @@ -29,7 +29,7 @@ Function2dcf: ; 2dcf ret ; 2de2 -Function2de2: ; 2de2 +Function2de2:: ; 2de2 call Function1fbf xor a ld [hBGMapMode], a @@ -46,7 +46,7 @@ Function2de2: ; 2de2 ret ; 2e08 -Function2e08: ; 2e08 +Function2e08:: ; 2e08 call Function1fbf ld a, [hROMBank] push af @@ -63,7 +63,7 @@ Function2e08: ; 2e08 ret ; 2e20 -Function2e20: ; 2e20 +Function2e20:: ; 2e20 ld a, [hOAMUpdate] push af ld a, $1 @@ -74,7 +74,7 @@ Function2e20: ; 2e20 ret ; 2e31 -Function2e31: ; 2e31 +Function2e31:: ; 2e31 ld a, [hOAMUpdate] push af ld a, [hBGMapMode] |