Remove debug code

cpsdqs/unified-input
cpsdqs 7 years ago
parent a8354f2288
commit a9f59488fd
Signed by untrusted user: cpsdqs
GPG Key ID: 3F59586BB7448DD1
  1. 16
      js/term_screen.js

@ -1151,8 +1151,6 @@ window.TermScreen = class TermScreen {
this.screenAttrs = new Array(screenLength).fill(' ')
}
let bgcount = new Array(256).fill(0)
let strArray = !undef(Array.from) ? Array.from(str) : str.split('')
const MASK_LINE_ATTR = 0xC8
@ -1174,7 +1172,6 @@ window.TermScreen = class TermScreen {
else this.blinkingCellCount--
}
bgcount[bg]++
this.screen[cell] = lastChar
this.screenFG[cell] = fg
this.screenBG[cell] = bg
@ -1231,19 +1228,6 @@ window.TermScreen = class TermScreen {
if (this.window.debug) console.log(`Blinky cells = ${this.blinkingCellCount}`)
// work-around for the grid gaps bug
// will mask the glitch if most of the screen uses the same background
let mostCommonBg = 0
let mcbIndex = 0
for (let i = 255; i >= 0; i--) {
if (bgcount[i] > mostCommonBg) {
mostCommonBg = bgcount[i]
mcbIndex = i
}
}
// this.canvas.style.backgroundColor = this.getColor(mcbIndex)
this.canvas.style.backgroundColor = '#f00'
this.scheduleDraw('load', 16)
this.emit('load')
}

Loading…
Cancel
Save