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

Make Return send #, use CTRL-Return for return

Not tested on Windows.
parent 8cadf885
Branches
Tags
No related merge requests found
Pipeline #7015 passed
...@@ -4419,7 +4419,14 @@ doterm(struct bbslist *bbs) ...@@ -4419,7 +4419,14 @@ doterm(struct bbslist *bbs)
ch[0] = '_'; ch[0] = '_';
conn_send(ch, 1, 0); conn_send(ch, 1, 0);
break; break;
// TODO: Can send control chars instead... case 10:
ch[0] = '\r';
conn_send(ch, 1, 0);
break;
case 13:
ch[0] = '_';
conn_send(ch, 1, 0);
break;
case 8: case 8:
case CIO_KEY_DC: case CIO_KEY_DC:
case CIO_KEY_LEFT: case CIO_KEY_LEFT:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment