diff options
| author | entrpntr <entrpntr@gmail.com> | 2020-05-12 17:45:03 -0400 |
|---|---|---|
| committer | entrpntr <entrpntr@gmail.com> | 2020-05-13 00:56:53 -0400 |
| commit | f235b94a4cf9566f950962248ef7dbdacca08d41 (patch) | |
| tree | 90df0cfb2619ccb8346b8e9d41089c1c1cae9f74 /engine/pokemon | |
| parent | ff78a288fde1c6b96bb6641319abec367d5cb582 (diff) | |
Many minor cleanups.
Diffstat (limited to 'engine/pokemon')
| -rw-r--r-- | engine/pokemon/breeding.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/pokemon/breeding.asm b/engine/pokemon/breeding.asm index fd5d9a82..ee1afd25 100644 --- a/engine/pokemon/breeding.asm +++ b/engine/pokemon/breeding.asm @@ -428,7 +428,7 @@ GetEggMove: ld a, BANK(EggMovePointers) call GetFarHalfword .loop - ld a, BANK(EggMovePointers) + ld a, BANK("Egg Moves") call GetFarByte cp -1 jr z, .reached_end @@ -617,7 +617,7 @@ GetBreedmonMovePointer: ld hl, wBreedMon2Moves ret -GetHatchlingFrontpic: +GetEggFrontpic: push de ld [wCurPartySpecies], a ld [wCurSpecies], a @@ -677,10 +677,10 @@ EggHatch_AnimationSequence: farcall ClearSpriteAnims ld de, vTiles2 tile $00 ld a, [wJumptableIndex] - call GetHatchlingFrontpic + call GetEggFrontpic ld de, vTiles2 tile $31 ld a, EGG - call GetHatchlingFrontpic + call GetEggFrontpic ld de, MUSIC_EVOLUTION call PlayMusic call EnableLCD |
