mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
Improve fast text scrolling
Instatext seems to have its own thing going on that I have issues sorting, so I'm just removing the frame delay on fast text. It doesn't look like much but it's surprisingly good. Also, this makes fast text the default option.
This commit is contained in:
parent
723f7d56f7
commit
6c081d2d27
|
@ -26,7 +26,7 @@ IF DEF(_DEBUG)
|
|||
ld de, DebugMenuOptions
|
||||
call PlaceString
|
||||
|
||||
ld a, TEXT_DELAY_MEDIUM
|
||||
ld a, TEXT_DELAY_FAST
|
||||
ld [wOptions], a
|
||||
|
||||
ld a, A_BUTTON | B_BUTTON | START
|
||||
|
|
|
@ -127,7 +127,7 @@ MainMenu:
|
|||
InitOptions:
|
||||
ld a, TEXT_DELAY_FAST
|
||||
ld [wLetterPrintingDelayFlags], a
|
||||
ld a, TEXT_DELAY_MEDIUM
|
||||
ld a, TEXT_DELAY_FAST
|
||||
ld [wOptions], a
|
||||
ret
|
||||
|
||||
|
@ -682,7 +682,7 @@ SetCursorPositionsFromOptions:
|
|||
TextSpeedOptionData:
|
||||
db 14, TEXT_DELAY_SLOW
|
||||
db 7, TEXT_DELAY_MEDIUM
|
||||
db 1, TEXT_DELAY_FAST
|
||||
db 0, TEXT_DELAY_FAST ; this increases the fast text speed by a frame per tick - PvK
|
||||
db 7, -1 ; end (default X coordinate)
|
||||
|
||||
CheckForPlayerNameInSRAM:
|
||||
|
|
Loading…
Reference in a new issue