mirror of
https://github.com/thiagoauler/apple1.git
synced 2024-11-25 20:32:02 +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';
|
display_buffer = '\n';
|
||||||
}
|
}
|
||||||
addch(display_buffer);
|
if (display_buffer != 0x7F)
|
||||||
refresh();
|
{
|
||||||
|
addch(display_buffer);
|
||||||
|
refresh();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user