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

Don't use ANSI.SYS extensions

CSI s and CSI u are ANSI.SYS extensions, and aren't needed here.
We're clearing the screen and moveing the cursor anyway.
parent 7554868f
No related branches found
No related tags found
No related merge requests found
Pipeline #6914 passed
......@@ -1001,7 +1001,7 @@ int ansi_initio_cb(void)
int ansi_initciolib(int inmode)
{
int i;
char *init="\033[s\033[99B\033[99B\033[99B_\033[99C\033[99C\033[99C_\033[6n\033[u\033[0m_\033[2J\033[H";
char *init="\033[99B\033[99B\033[99B_\033[99C\033[99C\033[99C_\033[6n\033[0m_\033[2J\033[H";
time_t start;
cio_api.options = 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