diff options
author | yenatch <yenatch@gmail.com> | 2014-12-29 08:47:47 -0800 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-12-29 08:49:08 -0800 |
commit | 133e2fb7a7bcc914fa179a18bf0ed18a2099d0e8 (patch) | |
tree | c708a7a5d6ade88197feb6a94ceb7475e5813735 /home/lcd.asm | |
parent | 1a2784d4142572487fdf10a44aa4752de287e89f (diff) |
Use "- $ff00" instead of "& $ff" when dealing with hram.
Diffstat (limited to 'home/lcd.asm')
-rw-r--r-- | home/lcd.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/lcd.asm b/home/lcd.asm index 5a1b6cfda..216941995 100644 --- a/home/lcd.asm +++ b/home/lcd.asm @@ -3,7 +3,7 @@ Function547:: ; 547 ld a, [hLCDStatCustom] - cp rSCX & $ff + cp rSCX - $ff00 ret nz ld c, a ld a, [LYOverrides] |