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

View File

@ -200,7 +200,7 @@ class SettingsView{
delete this.items
if(this.resolution !== settings.getItem("resolution")){
for(var i in assets.image){
if(i.startsWith("bg_song_") || i.startsWith("bg_stage_") || i.startsWith("bg_don_")){
if(i === "touch_drum" || i.startsWith("bg_song_") || i.startsWith("bg_stage_") || i.startsWith("bg_don_")){
URL.revokeObjectURL(assets.image[i].src)
delete assets.image[i]
}