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

Atari ST doesn't support the VT-52 Ident command

parent 04b4380e
No related branches found
No related tags found
No related merge requests found
Pipeline #8792 passed
......@@ -2475,10 +2475,10 @@ do_st_vt_52(struct cterminal *cterm, char *retbuf, size_t retsize)
x = 79;
gotoxy(CURR_MINX + x, CURR_MINY + y);
break;
case 'Z':
if(retbuf && strlen(retbuf) + 3 < retsize)
strcat(retbuf, "\x1b/K");
break;
//case 'Z': // Ident, not supported by Atari ST
// if(retbuf && strlen(retbuf) + 3 < retsize)
// strcat(retbuf, "\x1b/K");
// break;
case '[':
case '\\':
// TODO: Hold-screen mode
......
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