diff options
author | xCrystal <rgr.crystal@gmail.com> | 2017-12-28 13:32:33 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2017-12-28 13:32:33 +0100 |
commit | 333524f0beb876ceaaed99b97f4c7dacf6466050 (patch) | |
tree | 6c6455eab8ab252d94370ea4fb76b8e8a8dc7623 /engine/breeding.asm | |
parent | 7beb497d3aba7cd1bb34f2b1394bde80c1cd9807 (diff) |
Lowercase v for VRAM addresses
Diffstat (limited to 'engine/breeding.asm')
-rwxr-xr-x | engine/breeding.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/breeding.asm b/engine/breeding.asm index 8977ae175..234e05448 100755 --- a/engine/breeding.asm +++ b/engine/breeding.asm @@ -704,22 +704,22 @@ EggHatch_AnimationSequence: ; 1728f (5:728f) farcall BlankScreen call DisableLCD ld hl, EggHatchGFX - ld de, VTiles0 tile $00 + ld de, vTiles0 tile $00 ld bc, $20 ld a, BANK(EggHatchGFX) call FarCopyBytes farcall ClearSpriteAnims - ld de, VTiles2 tile $00 + ld de, vTiles2 tile $00 ld a, [wJumptableIndex] call GetHatchlingFrontpic - ld de, VTiles2 tile $31 + ld de, vTiles2 tile $31 ld a, EGG call GetEggFrontpic ld de, MUSIC_EVOLUTION call PlayMusic call EnableLCD hlcoord 7, 4 - ld b, HIGH(VBGMap0) + ld b, HIGH(vBGMap0) ld c, $31 ; Egg tiles start here ld a, EGG call Hatch_UpdateFrontpicBGMapCenter @@ -768,7 +768,7 @@ EggHatch_AnimationSequence: ; 1728f (5:728f) call ClearSprites call Hatch_InitShellFragments hlcoord 6, 3 - ld b, HIGH(VBGMap0) + ld b, HIGH(vBGMap0) ld c, $00 ; Hatchling tiles start here ld a, [wJumptableIndex] call Hatch_UpdateFrontpicBGMapCenter |