diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-01-01 15:08:21 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-01-01 20:09:53 +0100 |
commit | 37369d1ae0890c63b494937ed6234e68f46359c5 (patch) | |
tree | fbf4952ed70906c1a4b10fb8b9e5c490bc680cc8 /engine/credits.asm | |
parent | 6e12a515031027ab0412ef37a3f6e3b24adfc736 (diff) |
Rename Pals labels in WRAM bank 5
Diffstat (limited to 'engine/credits.asm')
-rw-r--r-- | engine/credits.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/credits.asm b/engine/credits.asm index 051729531..3dddb4126 100644 --- a/engine/credits.asm +++ b/engine/credits.asm @@ -520,20 +520,20 @@ GetCreditsPalette: ; 109b2c ; Update the first three colors in both palette buffers. push af push hl - add LOW(UnknBGPals) + add LOW(wBGPals1) ld e, a ld a, 0 - adc HIGH(UnknBGPals) + adc HIGH(wBGPals1) ld d, a ld bc, 24 call CopyBytes pop hl pop af - add LOW(BGPals) + add LOW(wBGPals2) ld e, a ld a, 0 - adc HIGH(BGPals) + adc HIGH(wBGPals2) ld d, a ld bc, 24 call CopyBytes |