1
0
mirror of https://github.com/HarbourMasters/Shipwright.git synced 2025-02-24 23:01:47 -05:00

Use correct default value ()

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

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