Fixes visual bug in shops when above 2x text speed

This commit is contained in:
Ada 2022-04-24 13:16:11 +01:00
parent 0ee779f94a
commit 8fdc56e763
1 changed files with 1 additions and 1 deletions

View File

@ -1144,7 +1144,7 @@ void Message_DrawText(GlobalContext* globalCtx, Gfx** gfxP) {
}
}
if (msgCtx->textDelayTimer == 0) {
msgCtx->textDrawPos = i + CVar_GetS32("gTextSpeed", 1);
msgCtx->textDrawPos = i + 1;
msgCtx->textDelayTimer = msgCtx->textDelay;
} else {
msgCtx->textDelayTimer--;