mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- missed one place where FBrokenLines was used.
This commit is contained in:
parent
4343d0b9c5
commit
98b8a2b1f4
1 changed files with 2 additions and 2 deletions
|
@ -1196,9 +1196,9 @@ static void PrintSecretString(const char *string, bool thislevel)
|
||||||
}
|
}
|
||||||
auto brok = V_BreakLines(ConFont, screen->GetWidth()*95/100, string);
|
auto brok = V_BreakLines(ConFont, screen->GetWidth()*95/100, string);
|
||||||
|
|
||||||
for (int k = 0; brok[k].Width >= 0; k++)
|
for (auto &line : brok)
|
||||||
{
|
{
|
||||||
Printf("%s%s\n", colstr, brok[k].Text.GetChars());
|
Printf("%s%s\n", colstr, line.Text.GetChars());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue