mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-13 14:36:37 -04:00
Fix handle of \r
This commit is contained in:
parent
af7ee6ca78
commit
8ff35de098
@ -172,6 +172,8 @@ void next_line(){
|
||||
void k_print(char key){
|
||||
if(key == '\n'){
|
||||
next_line();
|
||||
} else if(key == '\r'){
|
||||
// Ignore \r for now
|
||||
} else if(key == '\b'){
|
||||
--current_column;
|
||||
k_print(' ');
|
||||
|
Loading…
x
Reference in New Issue
Block a user