Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
Better conio handling.
  • Loading branch information
PR77 committed Aug 29, 2024
1 parent 8d10221 commit 20114d7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Source/conio/conio.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,8 @@ void conio_printCharacter(char character, e_colourPaletteIndexes foregroundColou
}
}

if (character == '\t') { //&& (cursorPosition->currentCursorColumn <= (TEXT_COLUMNS_VISIBLE - 4))) {
if (character == '\t') {
conio_moveCursorRight(DEFAULT_CURSOR_TAB_STEPS);

//cursorPosition->currentCursorColumn += 4;
}

if ((character == '\b') && (cursorPosition->currentCursorColumn > 0)) {
Expand Down

0 comments on commit 20114d7

Please sign in to comment.