oops completely broke high unicode

cpsdqs/unified-input
Ondřej Hruška 7 years ago
parent 0a975e8801
commit d1fd0b9f95
  1. 2
      jssrc/term_screen.js

@ -994,7 +994,7 @@ class TermScreen {
this.screenAttrs = new Array(screenLength).fill(' ')
}
let strArray = undef(Array.from) ? Array.from(str) : str.split('')
let strArray = !undef(Array.from) ? Array.from(str) : str.split('')
const MASK_LINE_ATTR = 0xC8
const MASK_BLINK = 1 << 4

Loading…
Cancel
Save