Browse Source

Merge pull request #644 from rpax/patch-1

NullContext thread safety
empirephoenix 8 years ago
parent
commit
4d48f5c8a4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      jme3-core/src/main/java/com/jme3/system/NullContext.java

+ 2 - 2
jme3-core/src/main/java/com/jme3/system/NullContext.java

@@ -96,8 +96,8 @@ public class NullContext implements JmeContext, Runnable {
         }
     }
 
-    private static long timeThen;
-    private static long timeLate;
+    private long timeThen;
+    private long timeLate;
 
     public void sync(int fps) {
         long timeNow;