Skip to content
Snippets Groups Projects
Commit 01f21bdc authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't do the DEL/Backspace swap for PETSCII terminals

This was a bug if the user had set their terminal to swap Delete and Backspace keys while not using a PETSCII terminal.
parent 73e5dd9c
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3694 failed
......@@ -63,8 +63,7 @@ int kbincom(sbbs_t* sbbs, unsigned long timeout)
if(IS_ALPHA(ch))
ch ^= 0x20; /* Swap upper/lower case */
}
if(term&SWAP_DELETE) {
else if(term&SWAP_DELETE) {
switch(ch) {
case TERM_KEY_DELETE:
ch = '\b';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment