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:
May Evans 2022-09-04 12:44:45 +01:00
parent 723f7d56f7
commit 6c081d2d27
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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: