We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b57138c commit 78b7d91Copy full SHA for 78b7d91
libctru/source/console.c
@@ -872,7 +872,7 @@ void consolePrintChar(int c) {
872
break;
873
874
case 9:
875
- currentConsole->cursorX += currentConsole->tabSize - ((currentConsole->cursorX)%(currentConsole->tabSize));
+ for(int i=0; i<currentConsole->tabSize; i++) consolePrintChar(' ');
876
877
case 10:
878
newRow();
0 commit comments