Fix results screen, clear drum asset

This commit is contained in:
LoveEevee
2019-04-05 00:21:08 +03:00
parent cb64777012
commit 78528b424c
2 changed files with 9 additions and 1 deletions

View File

@@ -193,6 +193,14 @@ class Scoresheet{
var winW = innerWidth
var winH = lastHeight
this.pixelRatio = window.devicePixelRatio || 1
var resolution = settings.getItem("resolution")
if(resolution === "medium"){
this.pixelRatio *= 0.75
}else if(resolution === "low"){
this.pixelRatio *= 0.5
}else if(resolution === "lowest"){
this.pixelRatio *= 0.25
}
winW *= this.pixelRatio
winH *= this.pixelRatio
var ratioX = winW / 1280