diff options
author | Astatin <[email protected]> | 2025-02-06 19:22:00 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-02-06 19:22:00 +0900 |
commit | 674d876aeff3eaaec1cf0226e45a6f649baca471 (patch) | |
tree | dd589d4de2b4eaa2cac8ff6718f6211fa19c72fd /init.gbasm | |
parent | ca26030e800318d48aec501e6f470eea8d4299c0 (diff) |
Stop changing window lcdc values mid-frame to avoid UB
Diffstat (limited to 'init.gbasm')
-rw-r--r-- | init.gbasm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -75,11 +75,11 @@ Initialize_Window_GUI: LD (HL+), A LD A, L - CP $40 + CP $94 LD $reg_lcd_status, A JR NZ, =.top_bar_loop - LD HL, $9da0 + LD HL, $9c80 LD BC, $00a0 LD DE, =Dialogue_Box_Tilemap_data CALL =memcpy |