mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Fixed console output of one-character lines during test
This commit is contained in:
parent
b9d5864d61
commit
386f866d5d
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ namespace IDE
|
||||||
|
|
||||||
String outputLine = scope String();
|
String outputLine = scope String();
|
||||||
outputLine.Append(" >");
|
outputLine.Append(" >");
|
||||||
if (crPos - lastCrPos - 2 > 0)
|
if (crPos - lastCrPos - 1 > 0)
|
||||||
outputLine.Append(StringView(queuedOutText, lastCrPos + 1, crPos - lastCrPos - 1));
|
outputLine.Append(StringView(queuedOutText, lastCrPos + 1, crPos - lastCrPos - 1));
|
||||||
|
|
||||||
QueueOutputLine(outputLine);
|
QueueOutputLine(outputLine);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue