Use correct default value (#4194)

This commit is contained in:
inspectredc 2024-06-16 04:43:09 +01:00 committed by GitHub
parent 3f67fed073
commit 79a29a62ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1115,7 +1115,7 @@ void Message_DrawText(PlayState* play, Gfx** gfxP) {
}
}
if (msgCtx->textDelayTimer == 0) {
msgCtx->textDrawPos = i + CVarGetInteger("gTextSpeed", 2);
msgCtx->textDrawPos = i + CVarGetInteger("gTextSpeed", 1);
msgCtx->textDelayTimer = msgCtx->textDelay;
} else {
msgCtx->textDelayTimer--;