Merge pull request #49 from ZetaNull/diploma

LAST SECOND DIPLOMA FIX
This commit is contained in:
Llinos Evans 2025-01-07 19:32:15 +00:00 committed by GitHub
commit e7d2a279ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,10 +42,16 @@ DisplayDiploma::
ld a, [wPlayerSex]
and a ; are you playing as Red
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
.green
farcall DrawFPlayerCharacter
jr .skip
.pink
farcall DrawNBPlayerCharacter
jr .skip
.red
farcall DrawPlayerCharacter
.skip