diff --git a/RabiClone_0.0a.zip b/RabiClone_0.0a.zip index cdb688b..8851d4d 100644 Binary files a/RabiClone_0.0a.zip and b/RabiClone_0.0a.zip differ diff --git a/bin/RabiClone.jar b/bin/RabiClone.jar index 7f872cd..352c298 100644 Binary files a/bin/RabiClone.jar and b/bin/RabiClone.jar differ diff --git a/src/sig/RabiClone.java b/src/sig/RabiClone.java index 733f59a..945d99e 100644 --- a/src/sig/RabiClone.java +++ b/src/sig/RabiClone.java @@ -26,7 +26,7 @@ import java.awt.event.KeyEvent; public class RabiClone { public static final String PROGRAM_NAME = "RabiClone"; - public static final String BLANK = "\0"; + public static String BLANK = "\0"; public static int UPCOUNT = 0; public static Panel p; @@ -142,7 +142,12 @@ public class RabiClone { lastReportedTime = System.currentTimeMillis(); } } - System.out.print(BLANK); //This is hackish. Removing this slows down the game by about 30%. The timer runs slower. ??? + try { + Thread.sleep(4); + } catch (InterruptedException e) { + e.printStackTrace(); + } + //System.out.print(BLANK); //This is hackish. Removing this slows down the game by about 30%. The timer runs slower. ??? } }