No more autogen functions in engine/crystal_intro.asm

This commit is contained in:
PikalaxALT 2015-12-02 20:37:00 -05:00
parent 2cdca75441
commit 2f14f3a669
2 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
Functione4579: ; e4579 Copyright_GFPresents: ; e4579
ld de, MUSIC_NONE ld de, MUSIC_NONE
call PlayMusic call PlayMusic
call ClearBGPalettes call ClearBGPalettes
@ -24,7 +24,7 @@ Functione4579: ; e4579
call DelayFrames call DelayFrames
call ClearTileMap call ClearTileMap
callba GBCOnlyScreen callba GBCOnlyScreen
call Functione45e8 call .GetGFLogoGFX
.joy_loop .joy_loop
call JoyTextDelay call JoyTextDelay
ld a, [hJoyLast] ld a, [hJoyLast]
@ -39,17 +39,17 @@ Functione4579: ; e4579
jr .joy_loop jr .joy_loop
.pressed_button .pressed_button
call Functione465e call .StopGamefreakAnim
scf scf
ret ret
.finish .finish
call Functione465e call .StopGamefreakAnim
and a and a
ret ret
; e45e8 ; e45e8
Functione45e8: ; e45e8 .GetGFLogoGFX: ; e45e8
ld de, GameFreakLogo ld de, GameFreakLogo
ld hl, VTiles2 ld hl, VTiles2
lb bc, BANK(GameFreakLogo), $1c lb bc, BANK(GameFreakLogo), $1c
@ -106,7 +106,7 @@ Functione45e8: ; e45e8
ret ret
; e465e ; e465e
Functione465e: ; e465e .StopGamefreakAnim: ; e465e
callba ClearSpriteAnims callba ClearSpriteAnims
call ClearTileMap call ClearTileMap
call ClearSprites call ClearSprites
@ -380,7 +380,7 @@ CrystalIntro: ; e48ac
push af push af
ld a, [hVBlank] ld a, [hVBlank]
push af push af
call Functione4901 call .InitRAMAddrs
.loop: ; e48bc .loop: ; e48bc
call JoyTextDelay call JoyTextDelay
ld a, [hJoyLast] ld a, [hJoyLast]
@ -418,7 +418,7 @@ CrystalIntro: ; e48ac
ret ret
; e4901 ; e4901
Functione4901: ; e4901 .InitRAMAddrs: ; e4901
xor a xor a
ld [hVBlank], a ld [hVBlank], a
ld a, $1 ld a, $1

View File

@ -1010,8 +1010,8 @@ Intro_PlacePlayerSprite: ; 61cd
; 620b ; 620b
Function620b: ; 620b CrystalIntroSequence: ; 620b
callab Functione4579 callab Copyright_GFPresents
jr c, StartTitleScreen jr c, StartTitleScreen
callba CrystalIntro callba CrystalIntro
@ -1068,8 +1068,8 @@ endr
.jumptable .jumptable
dw _MainMenu dw _MainMenu
dw Function6389 dw Function6389
dw Function620b dw CrystalIntroSequence
dw Function620b dw CrystalIntroSequence
dw ResetClock dw ResetClock
; 6274 ; 6274
@ -1423,5 +1423,5 @@ GameInit:: ; 642e
ld a, $90 ld a, $90
ld [hWY], a ld [hWY], a
call WaitBGMap call WaitBGMap
jp Function620b jp CrystalIntroSequence
; 6454 ; 6454