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
@@ -168,7 +168,7 @@ public class AndroidLauncher extends AndroidApplication{
SaveSlot slot = control.saves.importSave(file); SaveSlot slot = control.saves.importSave(file);
ui.load.runLoadSave(slot); ui.load.runLoadSave(slot);
}catch(IOException e){ }catch(IOException e){
ui.showException("save.import.fail", e); ui.showException("$save.import.fail", e);
} }
}else{ }else{
ui.showErrorMessage("$save.import.invalid"); ui.showErrorMessage("$save.import.invalid");
@@ -178,7 +178,7 @@ public class LoadDialog extends FloatingDialog{
setup(); setup();
}catch(IOException e){ }catch(IOException e){
e.printStackTrace(); e.printStackTrace();
ui.showException("save.import.fail", e); ui.showException("$save.import.fail", e);
} }
}else{ }else{
ui.showErrorMessage("$save.import.invalid"); ui.showErrorMessage("$save.import.invalid");
+2 -2
View File
@@ -173,10 +173,10 @@ public class IOSLauncher extends IOSApplication.Delegate{
ui.load.runLoadSave(slot); ui.load.runLoadSave(slot);
} }
}catch(IOException e){ }catch(IOException e){
ui.showException("save.import.fail", e); ui.showException("$save.import.fail", e);
} }
}else{ }else{
ui.showErrorMessage("save.import.invalid"); ui.showErrorMessage("$save.import.invalid");
} }
} }