Skip to content
Snippets Groups Projects
Commit d2e8d94e authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

In PETSCII mdoes, map BS to DEL

C64 doesn't have a backspace key, so treat backspace the same as
DEL.

Closes tick 197.
parent 28d6adb7
No related branches found
No related tags found
No related merge requests found
Pipeline #8713 failed
......@@ -4831,6 +4831,7 @@ doterm(struct bbslist *bbs)
ch[0] = 147; /* Clear / Shift-Home */
conn_send(ch, 1, 0);
break;
case 8:
case CIO_KEY_DC: /* "Delete" key */
ch[0] = 20;
conn_send(ch, 1, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment