summaryrefslogtreecommitdiff
path: root/soh
diff options
context:
space:
mode:
authorAda <60364512+GreatArgorath@users.noreply.github.com>2022-04-24 13:16:11 +0100
committerKenix3 <kenixwhisperwind@gmail.com>2022-04-30 10:34:23 -0400
commitffaafb8b4e571e67f2ac0a1ee33c2a1450aee2f0 (patch)
treee2c908e2417e04558963100bd9f8f342a7f30c05 /soh
parent4f72923fcd62752e1ceb0a8e03b3140a4042c349 (diff)
Fixes visual bug in shops when above 2x text speed
Diffstat (limited to 'soh')
-rw-r--r--soh/src/code/z_message_PAL.c2
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--;