Index: main/LastDefenseMain.java
===================================================================
--- main/LastDefenseMain.java	(revision ca2a854073afba064937097f7bff1185048a00bb)
+++ main/LastDefenseMain.java	(revision fb4fc67847747b814769bd453d16f121aef914e4)
@@ -38,5 +38,5 @@
 
 public class LastDefenseMain implements KeyListener, MouseListener {
-    private static final boolean RUNNING_FROM_JAR = false;
+    private static final boolean RUNNING_FROM_JAR = true;
     GameState gameState;
     AuxState auxState;
@@ -121,5 +121,5 @@
             this.g = bufferStrategy.getDrawGraphics();
             this.refreshRate = device.getDisplayMode().getRefreshRate();
-            Utils.init(gc, RUNNING_FROM_JAR);
+            Utils.init(gc, true);
             this.gameState = GameState.Main;
             this.auxState = AuxState.None;
@@ -153,5 +153,5 @@
                 this.g.dispose();
                 bufferStrategy.show();
-                this.frameCount++;
+                ++this.frameCount;
                 if (System.nanoTime() - 1000000000L >= this.lastFpsUpdate) {
                     this.lastFpsUpdate = System.nanoTime();
@@ -160,8 +160,10 @@
                 }
             }
-        } catch (Throwable th) {
-            th.printStackTrace();
+        }
+        catch (Exception e2) {
+            e2.printStackTrace();
             return;
-        } finally {
+        }
+        finally {
             device.setFullScreenWindow(null);
         }
