Eren Yilmaz пре 6 година
родитељ
комит
e8d2fa3d70
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/animation/AnimationController.java

+ 1 - 1
src/animation/AnimationController.java

@@ -83,8 +83,8 @@ public class AnimationController {
      */
     public void setNextAction( Action a )
     {
-        next = a;
         synchronized( this ) {
+            next = a;
             notify();
         }
     }