Skip to content
Snippets Groups Projects
Commit 17309e25 authored by rswindell's avatar rswindell
Browse files

Bugfix: Ctrl-A codes to move the cursor right (>0x7f) weren't working for

non-ANSI users.
parent 404f0e78
No related branches found
No related tags found
No related merge requests found
......@@ -378,8 +378,7 @@ void sbbs_t::ctrl_a(char x)
return;
}
if((uchar)x>0x7f) {
if(useron.misc&ANSI)
cursor_right((uchar)x-0x7f);
cursor_right((uchar)x-0x7f);
return;
}
switch(toupper(x)) {
......
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