[C no longer wraps to next line

This commit is contained in:
mysticbbs 2013-02-27 04:41:10 -05:00
parent 3b41411d22
commit bd48629e61
1 changed files with 3 additions and 2 deletions

View File

@ -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);