Add newline to console output
parent
09f90cedfc
commit
4f53411d91
|
@ -87,7 +87,7 @@ public sealed partial class DebugConsole : Control
|
||||||
while (fs.GetPosition() < fs.GetLength())
|
while (fs.GetPosition() < fs.GetLength())
|
||||||
{
|
{
|
||||||
string line = fs.GetLine();
|
string line = fs.GetLine();
|
||||||
_output.Text += line;
|
_output.Text += line + "\n";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
timer.Start(DEBUG_REFRESH_INTERVAL);
|
timer.Start(DEBUG_REFRESH_INTERVAL);
|
||||||
|
|
Loading…
Reference in New Issue