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
No related branches found
No related tags found
No related merge requests found
Pipeline #7015 passed
......@@ -4419,7 +4419,14 @@ doterm(struct bbslist *bbs)
ch[0] = '_';
conn_send(ch, 1, 0);
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 CIO_KEY_DC:
case CIO_KEY_LEFT:
......
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