Add newline to console output

pull/37/head
HumanoidSandvichDispenser 2024-06-04 14:01:18 -07:00
parent 09f90cedfc
commit 4f53411d91
Signed by: sandvich
GPG Key ID: 9A39BE37E602B22D
1 changed files with 1 additions and 1 deletions

View File

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