diff options
author | Bryan Bishop <kanzure@gmail.com> | 2014-02-04 07:25:51 -0800 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2014-02-04 07:25:51 -0800 |
commit | 1202e68d2f695d4b91d184bd43139dbe10cb8131 (patch) | |
tree | 504954f57273cae14de4618a82770c4e4e2e5dd9 /home/lcd.asm | |
parent | 80465fc6e6f1455f4ae65b5c0db54b9953ca0cc5 (diff) | |
parent | 7c02c2bb31317c31446a5907fe68f26dabb4858f (diff) |
Merge pull request #228 from yenatch/nuke-globals
Nuke globals.asm
Diffstat (limited to 'home/lcd.asm')
-rw-r--r-- | home/lcd.asm | 8 |
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 |