Improve the song loading screen error message

This commit is contained in:
LoveEevee
2020-03-16 16:42:36 +03:00
parent a25e108a4b
commit 4b37150ee0
6 changed files with 126 additions and 76 deletions

View File

@@ -207,14 +207,14 @@ class Controller{
displayScore(score, notPlayed, bigNote){
this.view.displayScore(score, notPlayed, bigNote)
}
songSelection(fadeIn, scoreSaveFailed){
songSelection(fadeIn, showWarning){
if(!fadeIn){
this.clean()
}
if(this.calibrationMode){
new SettingsView(this.touchEnabled, false, null, "latency")
}else{
new SongSelect(false, fadeIn, this.touchEnabled, null, scoreSaveFailed)
new SongSelect(false, fadeIn, this.touchEnabled, null, showWarning)
}
}
restartSong(){