mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-14 00:56:40 +13:00
Let's not call things sprites when they aren't.
hg-commit-id: 47c127c1d1b6
This commit is contained in:
parent
fa5434f225
commit
3868e76766
22
pokered.asm
22
pokered.asm
|
|
@ -684,26 +684,26 @@ OakSpeech: ; 6115
|
||||||
jp nz,$61BC
|
jp nz,$61BC
|
||||||
ld de,$615F
|
ld de,$615F
|
||||||
ld bc,$1300
|
ld bc,$1300
|
||||||
call $62A4 ; displays Oak sprite?
|
call $62A4 ; displays Oak pic?
|
||||||
call FadeInIntroSprite ; fades in the sprite?
|
call FadeInIntroPic
|
||||||
ld hl,HelloWelcomeText
|
ld hl,HelloWelcomeText
|
||||||
call PrintText ; prints text box
|
call PrintText ; prints text box
|
||||||
call $20D8
|
call $20D8
|
||||||
call ClearScreen
|
call ClearScreen
|
||||||
ld a,NIDORINO
|
ld a,NIDORINO
|
||||||
ld [$D0B5],a ; sprite displayed is stored at this location
|
ld [$D0B5],a ; pic displayed is stored at this location
|
||||||
ld [$CF91],a
|
ld [$CF91],a
|
||||||
call $1537 ; this is also related to the sprite
|
call $1537 ; this is also related to the pic
|
||||||
ld hl,$C3F6 ; position on tilemap the sprite is displayed
|
ld hl,$C3F6 ; position on tilemap the pic is displayed
|
||||||
call $1384 ; displays sprite?
|
call $1384 ; displays pic?
|
||||||
call MovePicLeft
|
call MovePicLeft
|
||||||
ld hl,WorldFilledWithText
|
ld hl,WorldFilledWithText
|
||||||
call PrintText ; Prints text box
|
call PrintText ; Prints text box
|
||||||
call $20D8
|
call $20D8
|
||||||
call ClearScreen
|
call ClearScreen
|
||||||
ld de,$6EDE
|
ld de,$6EDE
|
||||||
ld bc,$0400 ; affects the position of the player sprite
|
ld bc,$0400 ; affects the position of the player pic
|
||||||
call $62A4 ; displays player sprite?
|
call $62A4 ; displays player pic?
|
||||||
call MovePicLeft
|
call MovePicLeft
|
||||||
ld hl,FirstWhatIsYourNameText
|
ld hl,FirstWhatIsYourNameText
|
||||||
call PrintText
|
call PrintText
|
||||||
|
|
@ -712,8 +712,8 @@ OakSpeech: ; 6115
|
||||||
call ClearScreen
|
call ClearScreen
|
||||||
ld de,$6049
|
ld de,$6049
|
||||||
ld bc,$1300
|
ld bc,$1300
|
||||||
call $62A4 ; displays rival sprite
|
call $62A4 ; displays rival pic
|
||||||
call FadeInIntroSprite
|
call FadeInIntroPic
|
||||||
ld hl,ThisIsMyGrandsonText
|
ld hl,ThisIsMyGrandsonText
|
||||||
call PrintText
|
call PrintText
|
||||||
call $69A4
|
call $69A4
|
||||||
|
|
@ -787,7 +787,7 @@ ThisIsMyGrandsonText:
|
||||||
YourOwnLegendText:
|
YourOwnLegendText:
|
||||||
db $17,$97,$65,$22,$50 ; "Ninten! Your very own legend ..."
|
db $17,$97,$65,$22,$50 ; "Ninten! Your very own legend ..."
|
||||||
|
|
||||||
FadeInIntroSprite:
|
FadeInIntroPic:
|
||||||
ld hl,IntroFadePalettes
|
ld hl,IntroFadePalettes
|
||||||
ld b,6
|
ld b,6
|
||||||
.next\@
|
.next\@
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue