summaryrefslogtreecommitdiff
path: root/home/lcd.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/lcd.asm
parentadb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff)
Use :: to export labels between objects.
This fixes the build.
Diffstat (limited to 'home/lcd.asm')
-rw-r--r--home/lcd.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/lcd.asm b/home/lcd.asm
index 9c86eaa5c..5a1b6cfda 100644
--- a/home/lcd.asm
+++ b/home/lcd.asm
@@ -1,7 +1,7 @@
; LCD handling
-Function547: ; 547
+Function547:: ; 547
ld a, [hLCDStatCustom]
cp rSCX & $ff
ret nz
@@ -12,7 +12,7 @@ Function547: ; 547
; 552
-LCD: ; 552
+LCD:: ; 552
push af
ld a, [hLCDStatCustom]
and a
@@ -37,7 +37,7 @@ LCD: ; 552
; 568
-DisableLCD: ; 568
+DisableLCD:: ; 568
; Turn the LCD off
; Don't need to do anything if the LCD is already off
@@ -72,7 +72,7 @@ DisableLCD: ; 568
; 58a
-EnableLCD: ; 58a
+EnableLCD:: ; 58a
ld a, [rLCDC]
set 7, a ; lcd enable
ld [rLCDC], a