Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2019-09-09 16:22:40 -04:00
3 changed files with 5 additions and 5 deletions

View File

@ -168,7 +168,7 @@ public class AndroidLauncher extends AndroidApplication{
SaveSlot slot = control.saves.importSave(file);
ui.load.runLoadSave(slot);
}catch(IOException e){
ui.showException("save.import.fail", e);
ui.showException("$save.import.fail", e);
}
}else{
ui.showErrorMessage("$save.import.invalid");

View File

@ -178,7 +178,7 @@ public class LoadDialog extends FloatingDialog{
setup();
}catch(IOException e){
e.printStackTrace();
ui.showException("save.import.fail", e);
ui.showException("$save.import.fail", e);
}
}else{
ui.showErrorMessage("$save.import.invalid");

View File

@ -173,10 +173,10 @@ public class IOSLauncher extends IOSApplication.Delegate{
ui.load.runLoadSave(slot);
}
}catch(IOException e){
ui.showException("save.import.fail", e);
ui.showException("$save.import.fail", e);
}
}else{
ui.showErrorMessage("save.import.invalid");
ui.showErrorMessage("$save.import.invalid");
}
}
@ -188,4 +188,4 @@ public class IOSLauncher extends IOSApplication.Delegate{
UIApplication.main(argv, null, IOSLauncher.class);
pool.close();
}
}
}