[C no longer wraps to next line
This commit is contained in:
parent
3b41411d22
commit
bd48629e61
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue