diff options
| author | Ada <60364512+GreatArgorath@users.noreply.github.com> | 2022-04-24 13:16:11 +0100 |
|---|---|---|
| committer | Kenix3 <kenixwhisperwind@gmail.com> | 2022-04-30 10:34:23 -0400 |
| commit | ffaafb8b4e571e67f2ac0a1ee33c2a1450aee2f0 (patch) | |
| tree | e2c908e2417e04558963100bd9f8f342a7f30c05 /soh/src | |
| parent | 4f72923fcd62752e1ceb0a8e03b3140a4042c349 (diff) | |
Fixes visual bug in shops when above 2x text speed
Diffstat (limited to 'soh/src')
| -rw-r--r-- | soh/src/code/z_message_PAL.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/z_message_PAL.c b/soh/src/code/z_message_PAL.c index c970aec5f..419b322f8 100644 --- a/soh/src/code/z_message_PAL.c +++ b/soh/src/code/z_message_PAL.c @@ -1084,7 +1084,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--; |
