fix skipping close functions on startup exception

This commit is contained in:
yugecin 2017-01-18 16:43:35 +01:00
parent 605dcec605
commit b1ccfe3019

View File

@ -79,7 +79,8 @@ public class OpsuDance {
try { try {
container.setup(); container.setup();
} catch (Exception e) { } catch (Exception e) {
errorAndExit("could not initialize GL", e); ErrorHandler.error("could not initialize GL", e).preventContinue().show();
return false;
} }
Exception caughtException = null; Exception caughtException = null;
try { try {