diff --git a/mdl/m_term_ansi.pas b/mdl/m_term_ansi.pas index 0b1c8a8..adacd5e 100644 --- a/mdl/m_term_ansi.pas +++ b/mdl/m_term_ansi.pas @@ -152,8 +152,9 @@ Begin X := Screen.CursorX; If (X + Offset) > 80 Then Begin - Screen.WriteChar(#10); // force lf incase we have to scroll - Screen.CursorXY(X + Offset - 80, Screen.CursorY); + Screen.CursorXY (80, Screen.CursorY); +// Screen.WriteChar(#10); // force lf incase we have to scroll +// Screen.CursorXY(X + Offset - 80, Screen.CursorY); End Else Screen.CursorXY (x + offset, Screen.CursorY);