From bd48629e618a8d25217e73ca85f24d1bfe786244 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Wed, 27 Feb 2013 04:41:10 -0500 Subject: [PATCH] [C no longer wraps to next line --- mdl/m_term_ansi.pas | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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);