* crtwrite didn't handle buffer writes > 255 chars properly, and the textrec buffer is 256 currently (and has been since svn history start). Mantis #22334

git-svn-id: trunk@21738 -
This commit is contained in:
marco 2012-06-30 13:23:26 +00:00
parent c65abdeeae
commit 1a3d8f483e

View File

@ -711,7 +711,14 @@ begin
WriteChar(f.buffer[i]);
end
else
s:=s+f.buffer[i];
begin
if length(s)=255 then
begin
WriteStr(s);
s:='';
end;
s:=s+f.buffer[i];
end;
if s<>'' then
WriteStr(s);
SetScreenCursor(CurrX, CurrY);