v0.2.3c: reverted exception handling change for info preview, no meaningful reports can be gained here, also not letting the user start a new game and crashing instead is a realllly bad idea.

This commit is contained in:
Evan Debenham 2015-01-08 14:44:45 -05:00
parent 88712f0654
commit 4170108350

View File

@ -42,7 +42,7 @@ public class GamesInProgress {
info = new Info();
Dungeon.preview( info, bundle );
} catch (IOException e) {
} catch (Exception e) {
info = null;
}