diff options
author | yenatch <yenatch@gmail.com> | 2016-01-04 07:41:19 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-01-04 07:41:19 -0500 |
commit | 0add51451cda9d4221af137f83e2429d3577310c (patch) | |
tree | fd05f8f0ad49d88b032dc9e10af85a42dfa0e402 /home/lcd.asm | |
parent | da87d2a929b1d58175efe063833c124d8ba702c9 (diff) | |
parent | 2a263629a40e201b1702e2f4e65f1c61360cc2b2 (diff) |
Merge pull request #330 from PikalaxALT/scriptmacrorenaming
Scriptmacrorenaming
Diffstat (limited to 'home/lcd.asm')
-rw-r--r-- | home/lcd.asm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/home/lcd.asm b/home/lcd.asm index cf3e40699..875043bc0 100644 --- a/home/lcd.asm +++ b/home/lcd.asm @@ -2,7 +2,8 @@ Function547:: ; 547 - ld a, [hLCDStatCustom] +; Unreferenced + ld a, [hFFC6] cp rSCX - $ff00 ret nz ld c, a @@ -14,7 +15,7 @@ Function547:: ; 547 LCD:: ; 552 push af - ld a, [hLCDStatCustom] + ld a, [hFFC6] and a jr z, .done @@ -25,7 +26,7 @@ LCD:: ; 552 ld b, LYOverrides >> 8 ld a, [bc] ld b, a - ld a, [hLCDStatCustom] + ld a, [hFFC6] ld c, a ld a, b ld [$ff00+c], a |