summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/init.asm2
-rw-r--r--home/lcd.asm2
2 files changed, 2 insertions, 2 deletions
diff --git a/home/init.asm b/home/init.asm
index fc7a253f4..8895da0f9 100644
--- a/home/init.asm
+++ b/home/init.asm
@@ -125,7 +125,7 @@ Init:: ; 17d
ld [hWX], a
ld [rWX], a
- ld a, rLCDC_DEFAULT ; %11100011
+ ld a, LCDC_DEFAULT ; %11100011
; LCD on
; Win tilemap 1
; Win on
diff --git a/home/lcd.asm b/home/lcd.asm
index e516db9d6..dfb174ee1 100644
--- a/home/lcd.asm
+++ b/home/lcd.asm
@@ -62,7 +62,7 @@ DisableLCD:: ; 568
jr nz, .wait
ld a, [rLCDC]
- and $ff ^ 1 << rLCDC_ENABLE
+ and $ff ^ (1 << rLCDC_ENABLE)
ld [rLCDC], a
xor a