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();
         }
