This looks right.

git-svn-id: https://svn.eduke32.com/eduke32@86 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2006-04-22 01:12:48 +00:00
parent 1d56c7d041
commit bbd659e7d4

View file

@ -2036,12 +2036,12 @@ void operatefta(void)
for(i=0;i<MAXUSERQUOTES;i++) for(i=0;i<MAXUSERQUOTES;i++)
{ {
if (user_quote_time[i] <= 0) break; if (user_quote_time[i] <= 0) break;
k -= 8; // <<(Bstrlen(user_quote[i]) > TEXTWRAPLEN); k -= scale(8,200,ScreenHeight);
l = Bstrlen(user_quote[i]); l = Bstrlen(user_quote[i]);
while(l > TEXTWRAPLEN) while(l > TEXTWRAPLEN)
{ {
l -= TEXTWRAPLEN; l -= TEXTWRAPLEN;
k -= 8; k -= scale(8,200,ScreenHeight);
} }
} }
k -= 4; k -= 4;