From 7bb13724081d61960e7972de039590a728c61c15 Mon Sep 17 00:00:00 2001 From: leemonsharc <146793021+leemonsharc@users.noreply.github.com> Date: Sun, 11 Jan 2026 15:50:33 -0800 Subject: [PATCH] Fix LCDC flag for background display --- src/assets/hello-world.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/hello-world.asm b/src/assets/hello-world.asm index 104a4637..0edf2c8e 100644 --- a/src/assets/hello-world.asm +++ b/src/assets/hello-world.asm @@ -56,7 +56,7 @@ CopyTilemap: jp nz, CopyTilemap ; Turn the LCD on - ld a, LCDC_ON | LCDCF_BG_ON + ld a, LCDC_ON | LCDC_BG_ON ld [rLCDC], a ; During the first (blank) frame, initialize display registers