mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 10:23:34 +12:00
Diploma Fix for Pink?
This commit is contained in:
parent
75c9adf431
commit
6ccf7997ed
|
@ -42,10 +42,16 @@ DisplayDiploma::
|
||||||
ld a, [wPlayerSex]
|
ld a, [wPlayerSex]
|
||||||
and a ; are you playing as Red
|
and a ; are you playing as Red
|
||||||
jr z, .red ; if yes, Red appears on the diploma
|
jr z, .red ; if yes, Red appears on the diploma
|
||||||
|
ld a, [wPlayerSex]
|
||||||
|
cp a, 2
|
||||||
|
jr z, .pink ; if yes, Pink appears on the diploma
|
||||||
jr nz, .green ; if no, Green replaces him
|
jr nz, .green ; if no, Green replaces him
|
||||||
.green
|
.green
|
||||||
farcall DrawFPlayerCharacter
|
farcall DrawFPlayerCharacter
|
||||||
jr .skip
|
jr .skip
|
||||||
|
.pink
|
||||||
|
farcall DrawNBPlayerCharacter
|
||||||
|
jr .skip
|
||||||
.red
|
.red
|
||||||
farcall DrawPlayerCharacter
|
farcall DrawPlayerCharacter
|
||||||
.skip
|
.skip
|
||||||
|
|
Loading…
Reference in a new issue