This commit is contained in:
Adam D. Ruppe 2020-05-12 22:13:33 -04:00
parent ef22dbafe9
commit c8f856d6fb
1 changed files with 2 additions and 0 deletions

View File

@ -1971,6 +1971,8 @@ class TerminalEmulator {
} else {
if(idx + screenWidth * 2 > normalScreen.length)
break;
// range violation in apt on debian
// FIXME
normalScreen[idx .. idx + screenWidth] = normalScreen[idx + screenWidth .. idx + screenWidth * 2];
}
idx += screenWidth;