We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98178cf + 653f7e2 commit d75a7a3Copy full SHA for d75a7a3
color/color.asm
@@ -453,7 +453,10 @@ SetPal_Slots:
453
454
xor a
455
ldh [rSVBK], a
456
- ret
+
457
+ ; Wait 3 frames to allow tilemap updates to apply. Prevents garbage
458
+ ; Prevents garbage from appearing when the slots machine open.
459
+ jp Delay3
460
461
; Titlescreen with cycling pokemon
462
SetPal_TitleScreen:
color/sprites.asm
@@ -38,6 +38,9 @@ LoadOverworldSpritePalettes:
38
ld hl, SpritePalettesPokecenter
39
cp POKECENTER
40
jr z, .gotPaletteList
41
+ ld a, [wCurMap]
42
+ cp INDIGO_PLATEAU_LOBBY
43
+ jr z, .gotPaletteList
44
; If not, load the normal Object Pals
45
ld hl, SpritePalettes
46
.gotPaletteList
0 commit comments