CanvasCache: Fix clearing on small screens

This commit is contained in:
LoveEevee 2018-12-03 03:02:03 +03:00
parent 6e61e24d56
commit abe2b4ccae

View File

@ -78,7 +78,7 @@ class CanvasCache{
this.lastW = 0
this.lastH = 0
this.map.clear()
this.ctx.clearRect(0, 0, this.canvas.width * this.scale, this.canvas.height * this.scale)
this.ctx.clearRect(0, 0, this.w, this.h)
}
clean(){
delete this.map