diff options
| author | klektron <klektron@users.noreply.github.com> | 2021-01-02 15:24:25 +0100 |
|---|---|---|
| committer | klektron <klektron@users.noreply.github.com> | 2021-01-02 15:24:25 +0100 |
| commit | 419eac2a656d5dd034e46c5f93ce808e583050de (patch) | |
| tree | e624efa8f0f96b763e8a610c0a616988ef72a1b0 /engine/movie | |
| parent | 36d4d6fe0aeeb60b5137b812b779fa82b05b4a5a (diff) | |
fixes here and there
Diffstat (limited to 'engine/movie')
| -rwxr-xr-x | engine/movie/title.asm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/engine/movie/title.asm b/engine/movie/title.asm index b05c271b..37811b81 100755 --- a/engine/movie/title.asm +++ b/engine/movie/title.asm @@ -56,7 +56,7 @@ DisplayTitleScreen: ld a, BANK(PokemonLogoGraphics) call FarCopyData2 ; second chunk ld hl, Version_GFX - ld de, vChars2 tile $60 + (10 tiles - (Version_GFXEnd - Version_GFX) * 2) / 2 + ld de, vChars2 tile $60 + (8 tiles - (Version_GFXEnd - Version_GFX) * 2) / 2 ld bc, Version_GFXEnd - Version_GFX ld a, BANK(Version_GFX) call FarCopyDataDouble @@ -398,12 +398,7 @@ PrintGameVersionOnTitleScreen: ; these point to special tiles specifically loaded for that purpose and are not usual text VersionOnTitleScreenText: -IF DEF(_RED) - db $60,$61,$62,$63,$64,$65,$66,$67,"@" ; "Edición Roja" -ENDC -IF DEF(_BLUE) - db $61,$62,$63,$64,$65,$66,$67,$68,"@" ; "Edición Azul" -ENDC + db $60,$61,$62,$63,$64,$65,$66,$67,"@" ; "Edición Roja" or "Edición Azul" NintenText: db "NINTEN@" SonyText: db "SONY@" |
