mirror of
https://github.com/thiagoauler/apple1.git
synced 2024-11-22 00:31:55 +00:00
doesnt output backspace character (invalid to print)
This commit is contained in:
parent
368e3fc02d
commit
078763b80c
@ -43,7 +43,10 @@ void output()
|
||||
{
|
||||
display_buffer = '\n';
|
||||
}
|
||||
addch(display_buffer);
|
||||
refresh();
|
||||
if (display_buffer != 0x7F)
|
||||
{
|
||||
addch(display_buffer);
|
||||
refresh();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user