Level selection menu: draw level cleared indicators [Commit 2/2] (#12)

This commit is contained in:
xCrystal
2024-01-23 17:42:24 +01:00
parent fa42b14e29
commit 2e9e298d64
7 changed files with 83 additions and 17 deletions

View File

@@ -582,6 +582,11 @@ _CGB_LevelSelectionMenu:
ld bc, 2 palettes
ld a, BANK(wOBPals1)
call FarCopyWRAM
; load stage trophy pals (pal2 to pal5)
ld hl, LevelSelectionMenuStageTrophyPals
ld bc, 4 palettes
ld a, BANK(wOBPals1)
call FarCopyWRAM
; load daytime and gender-based background pals
ld a, [wPlayerGender]

View File

@@ -880,4 +880,7 @@ LevelSelectionMenuFemalePals:
INCLUDE "gfx/level_selection_menu/background_female.pal"
assert_table_length NUM_DAYTIMES
LevelSelectionMenuStageTrophyPals:
INCLUDE "gfx/level_selection_menu/stage_trophies.pal"
INCLUDE "engine/gfx/rgb_fade.asm"