Fix song restarting and multiple touches

This commit is contained in:
LoveEevee 2018-10-05 21:12:50 +03:00
parent c8acfc3188
commit c999dca204
2 changed files with 3 additions and 3 deletions

View File

@ -136,10 +136,10 @@ class Controller{
restartSong(){ restartSong(){
this.clean() this.clean()
if(this.multiplayer){ if(this.multiplayer){
new loadSong(this.selectedSong, false, true) new loadSong(this.selectedSong, false, true, this.touchEnabled)
}else{ }else{
loader.changePage("game") loader.changePage("game")
var taikoGame = new Controller(this.selectedSong, this.songData, this.autoPlayEnabled) var taikoGame = new Controller(this.selectedSong, this.songData, this.autoPlayEnabled, false, this.touchEnabled)
taikoGame.run() taikoGame.run()
} }
} }

View File

@ -933,7 +933,7 @@ class View{
} }
} }
ontouch(event){ ontouch(event){
for(let touch of event.touches){ for(let touch of event.changedTouches){
event.preventDefault() event.preventDefault()
var scale = this.canvas.scale var scale = this.canvas.scale
var pageX = touch.pageX * scale var pageX = touch.pageX * scale