summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
Diffstat (limited to 'engine')
-rw-r--r--engine/color.asm4
-rwxr-xr-xengine/intro_menu.asm4
2 files changed, 4 insertions, 4 deletions
diff --git a/engine/color.asm b/engine/color.asm
index f4a420f1c..e000476c3 100644
--- a/engine/color.asm
+++ b/engine/color.asm
@@ -1008,8 +1008,8 @@ PushSGBBorder:
ret
SGB_ClearVRAM:
- ld hl, VTiles0
- ld bc, VRAM_End - VTiles0
+ ld hl, VRAM_Begin
+ ld bc, VRAM_End - VRAM_Begin
xor a
call ByteFill
ret
diff --git a/engine/intro_menu.asm b/engine/intro_menu.asm
index ec53549f8..7dd6cc01b 100755
--- a/engine/intro_menu.asm
+++ b/engine/intro_menu.asm
@@ -111,8 +111,8 @@ _ResetWRAM: ; 5bae
xor a
call ByteFill
- ld hl, wRAM1Start
- ld bc, wGameData - wRAM1Start
+ ld hl, WRAM1_Start
+ ld bc, wGameData - WRAM1_Start
xor a
call ByteFill