i think this will be faster

This commit is contained in:
kaleb 2017-02-04 03:39:10 +10:00 committed by GitHub
parent d804a30f37
commit 4ff5b1835c

View file

@ -94,7 +94,11 @@ namespace Cosmos.System {
NewLine();
} else if (aText[i] == '\r') {
} else if (aText[i] == '\t') {
Write(" ");
//Write(" ");
WriteChar(' ');
WriteChar(' ');
WriteChar(' ');
WriteChar(' ');
} else {
WriteChar(aText[i]);
}