Skip to content
Snippets Groups Projects
Commit 8f362073 authored by deuce's avatar deuce
Browse files

When using -a use a 512 line cterm window.

This allows optimizing tall ANSIs.
parent 91072211
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ int main(int argc, char **argv)
return(-1);
}
cterm=cterm_init(ti.screenheight, ti.screenwidth, 1, 1, SCROLL_LINES, scrollbuf, CTERM_EMULATION_ANSI_BBS);
cterm=cterm_init(ansi ? 512 : ti.screenheight, ti.screenwidth, 1, 1, SCROLL_LINES, scrollbuf, CTERM_EMULATION_ANSI_BBS);
if(!cterm) {
fputs("ERROR Initializing CTerm!\n", stderr);
return 1;
......
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