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

Don't warn in CSI [ ? 25 [lh]

For Dasme.
parent 8d2f526b
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -445,6 +445,19 @@ Screen.prototype.print=function(str) {
//case 'T': // Scroll down
//case 'L': // Insert line
//case 'M': // Delete line (also ANSI music!)
case 'l':
case 'h':
x = true;
y = false;
if (ext == '?') {
p.forEach(function(el) {
if (parseInt(el) !== 25)
x = false;
y = true;
});
}
if (x === false && y === true)
break;
default:
log("Sent unsupported ANSI sequence '"+ext+pb+ib+fb+"' please let shurd@sasktel.net net know about this so it can be fixed.");
}
......
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