mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-19 13:00:11 -07:00
Use correct default value (#4194)
This commit is contained in:
parent
3f67fed073
commit
79a29a62ef
1 changed files with 1 additions and 1 deletions
|
@ -1115,7 +1115,7 @@ void Message_DrawText(PlayState* play, Gfx** gfxP) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (msgCtx->textDelayTimer == 0) {
|
if (msgCtx->textDelayTimer == 0) {
|
||||||
msgCtx->textDrawPos = i + CVarGetInteger("gTextSpeed", 2);
|
msgCtx->textDrawPos = i + CVarGetInteger("gTextSpeed", 1);
|
||||||
msgCtx->textDelayTimer = msgCtx->textDelay;
|
msgCtx->textDelayTimer = msgCtx->textDelay;
|
||||||
} else {
|
} else {
|
||||||
msgCtx->textDelayTimer--;
|
msgCtx->textDelayTimer--;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue