From 6ea1b919d954968a9720229975699e9ba7874848 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Thu, 31 Oct 2019 16:04:00 -0700 Subject: [PATCH] Disabled debug on AnimationLoaderSystem --- core/src/com/riiablo/engine/system/AnimationLoaderSystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/riiablo/engine/system/AnimationLoaderSystem.java b/core/src/com/riiablo/engine/system/AnimationLoaderSystem.java index 036878d0..754d5935 100644 --- a/core/src/com/riiablo/engine/system/AnimationLoaderSystem.java +++ b/core/src/com/riiablo/engine/system/AnimationLoaderSystem.java @@ -20,7 +20,7 @@ public class AnimationLoaderSystem extends IteratingSystem { private static final String TAG = "AnimationLoaderSystem"; private static final boolean DEBUG = true; - private static final boolean DEBUG_LOAD = DEBUG && true; + private static final boolean DEBUG_LOAD = DEBUG && !true; private final ComponentMapper cofComponent = ComponentMapper.getFor(CofComponent.class); private final ComponentMapper animComponent = ComponentMapper.getFor(AnimationComponent.class);