Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1805,14 +1805,11 @@ public override void SetBufferContents(Coordinates origin,
//if x is exceeding buffer width, reset to the next line
if (origin.X >= BufferSize.Width)
{
origin.X = 1;
origin.X = 0;
}

//write the character from contents
Console.Out.Write(charitem.Character);

//advance the character one position
origin.X++;
}

//reset the cursor to the original position
Expand Down