Index: .gitignore
===================================================================
--- .gitignore	(revision 1c27783d6269ba42d4373e4dc9442ff90b0a271d)
+++ .gitignore	(revision c3b2f425ecde918d37513401a678f332870846f1)
@@ -2,3 +2,3 @@
 *.class
 err.txt
-LostHavenRPG.jar
+LostPerception.jar
Index: main/LostHavenRPG.java
===================================================================
--- main/LostHavenRPG.java	(revision 1c27783d6269ba42d4373e4dc9442ff90b0a271d)
+++ main/LostHavenRPG.java	(revision c3b2f425ecde918d37513401a678f332870846f1)
@@ -237,5 +237,6 @@
         this.g = bufferStrategy.getDrawGraphics();
         this.gcsLogo.draw(this.g, 0, 0);
-        this.g.setColor(Color.green);
+        this.g.setColor(Color.black);
+        this.g.setFont(this.guiFont12);
         this.g.drawString("Loading...", 368, 31);
         this.g.dispose();
@@ -244,15 +245,15 @@
     
     private void loadGUI(final BufferStrategy bufferStrategy) {
-        this.font14 = new Font("Arial", 0, 14);
         this.gcsLogo = new DynamicImage("gui/gcslogo.png");
-        this.g.setFont(this.font14);
+        this.guiFont12 = new Font("Garamond", 1, 12);
+        this.m = this.g.getFontMetrics(this.guiFont12);
         this.updateLoadingScreen(bufferStrategy);
+
         this.font11 = new Font("Arial", 0, 11);
         this.font12 = new Font("Arial", 0, 12);
+        this.font14 = new Font("Arial", 0, 14);
         this.font24 = new Font("Arial", 0, 24);
         this.fontTT = new Font("Courier New", 0, 11);
-        this.guiFont12 = new Font("Garamond", 1, 12);
         this.guiFont14 = new Font("Garamond", 1, 14);
-        this.m = this.g.getFontMetrics(this.guiFont12);
         try {
             final Font fontCustom = Utils.loadFont("images/gui/Last_words.ttf");
@@ -262,6 +263,5 @@
             this.fontCustom24 = fontCustom.deriveFont(0, 24.0f);
             this.fontCustom30 = fontCustom.deriveFont(0, 30.0f);
-        }
-        catch (Exception e) {
+        } catch (Exception e) {
             e.printStackTrace();
         }
Index: makefile
===================================================================
--- makefile	(revision 1c27783d6269ba42d4373e4dc9442ff90b0a271d)
+++ makefile	(revision c3b2f425ecde918d37513401a678f332870846f1)
@@ -19,4 +19,4 @@
 FILE_DEPS = $(DIALOG_FILE_DEPS) $(IMAGE_FILE_DEPS) $(MAP_FILE_DEPS)
 
-LostHavenRPG: $(CLASS_DEPS) $(FILE_DEPS)
-	jar cfe $@.jar main.$@ $^ $(INNER_DEPS)
+LostPerception: $(CLASS_DEPS) $(FILE_DEPS)
+	jar cfe $@.jar main.LostHavenRPG $^ $(INNER_DEPS)
Index: utils/Utils.java
===================================================================
--- utils/Utils.java	(revision 1c27783d6269ba42d4373e4dc9442ff90b0a271d)
+++ utils/Utils.java	(revision c3b2f425ecde918d37513401a678f332870846f1)
@@ -33,6 +33,5 @@
 import java.awt.GraphicsConfiguration;
 
-public class Utils
-{
+public class Utils {
     private static boolean RUNNING_FROM_JAR;
     private static Utils classLoaderReference;
