mirror of
https://github.com/sigmasternchen/Wish
synced 2025-03-15 23:48:55 +00:00
correction of [y;xH ANSI sequence
This commit is contained in:
parent
0b996b6a6c
commit
12a5530e73
1 changed files with 2 additions and 2 deletions
|
@ -252,8 +252,8 @@ Emulator.ANSISequences.output = function(text) {
|
|||
}
|
||||
Emulator.Output.normalOutput(normalText);
|
||||
Emulator.Output.cursorOff();
|
||||
Emulator.Output.xpos = (parseInt(specialText2) >= Emulator.Output.xsize) ? (Emulator.Output.xsize - 1) : parseInt(specialText2);
|
||||
Emulator.Output.ypos = (parseInt(specialText) >= Emulator.Output.ysize) ? (Emulator.Output.ysize - 1) : parseInt(specialText);
|
||||
Emulator.Output.xpos = (parseInt(specialText) >= Emulator.Output.xsize) ? (Emulator.Output.xsize - 1) : parseInt(specialText);
|
||||
Emulator.Output.ypos = (parseInt(specialText2) >= Emulator.Output.ysize) ? (Emulator.Output.ysize - 1) : parseInt(specialText2);
|
||||
Emulator.Output.cursorOn();
|
||||
specialText = "";
|
||||
specialText2 = "";
|
||||
|
|
Loading…
Reference in a new issue