diff options
author | xCrystal <rgr.crystal@gmail.com> | 2017-12-29 19:22:33 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2017-12-29 19:22:33 +0100 |
commit | 2a7ba6685afac73b824f611bbff228ff73cc51da (patch) | |
tree | 4fc88a070fb8a5f2bbb8e98cc9c6f74e3b4e6888 /engine/color.asm | |
parent | 3c6c80f1b24487ae4aa9d250d1dff290f09c231e (diff) |
Clean up changes in 3c6c80f
Diffstat (limited to 'engine/color.asm')
-rw-r--r-- | engine/color.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/color.asm b/engine/color.asm index 35358934a..262bccbbb 100644 --- a/engine/color.asm +++ b/engine/color.asm @@ -1073,7 +1073,7 @@ SGBBorder_PushBGPals: ld bc, $100 tiles call CopyData call DrawDefaultTiles - ld a, rLCDC_DEFAULT + ld a, LCDC_DEFAULT ld [rLCDC], a ld hl, PalPacket_9d06 call PushSGBPals @@ -1107,7 +1107,7 @@ SGBBorder_MorePalPushing: ld bc, 16 palettes call CopyData call DrawDefaultTiles - ld a, rLCDC_DEFAULT + ld a, LCDC_DEFAULT ld [rLCDC], a ld hl, PalPacket_9d46 call PushSGBPals @@ -1131,7 +1131,7 @@ SGBBorder_YetMorePalPushing: dec b jr nz, .loop call DrawDefaultTiles - ld a, rLCDC_DEFAULT + ld a, LCDC_DEFAULT ld [rLCDC], a ld hl, PalPacket_9d36 call PushSGBPals |