mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 06:41:59 +00:00
This looks right.
git-svn-id: https://svn.eduke32.com/eduke32@86 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1d56c7d041
commit
bbd659e7d4
1 changed files with 2 additions and 2 deletions
|
@ -2036,12 +2036,12 @@ void operatefta(void)
|
|||
for(i=0;i<MAXUSERQUOTES;i++)
|
||||
{
|
||||
if (user_quote_time[i] <= 0) break;
|
||||
k -= 8; // <<(Bstrlen(user_quote[i]) > TEXTWRAPLEN);
|
||||
k -= scale(8,200,ScreenHeight);
|
||||
l = Bstrlen(user_quote[i]);
|
||||
while(l > TEXTWRAPLEN)
|
||||
{
|
||||
l -= TEXTWRAPLEN;
|
||||
k -= 8;
|
||||
k -= scale(8,200,ScreenHeight);
|
||||
}
|
||||
}
|
||||
k -= 4;
|
||||
|
|
Loading…
Reference in a new issue