1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed console output of one-character lines during test

This commit is contained in:
Brian Fiete 2023-08-03 01:10:29 -07:00
parent b9d5864d61
commit 386f866d5d

View file

@ -199,7 +199,7 @@ namespace IDE
String outputLine = scope String();
outputLine.Append(" >");
if (crPos - lastCrPos - 2 > 0)
if (crPos - lastCrPos - 1 > 0)
outputLine.Append(StringView(queuedOutText, lastCrPos + 1, crPos - lastCrPos - 1));
QueueOutputLine(outputLine);