Skip to content

Commit

Permalink
Fixes systems going out of priority order after removal #237
Browse files Browse the repository at this point in the history
  • Loading branch information
dsaltares committed Aug 13, 2016
1 parent d54059d commit cec6cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ashley/src/com/badlogic/ashley/core/SystemManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class SystemManager {
private SystemComparator systemComparator = new SystemComparator();
private Array<EntitySystem> systems = new Array<EntitySystem>(false, 16);
private Array<EntitySystem> systems = new Array<EntitySystem>(true, 16);
private ImmutableArray<EntitySystem> immutableSystems = new ImmutableArray<EntitySystem>(systems);
private ObjectMap<Class<?>, EntitySystem> systemsByClass = new ObjectMap<Class<?>, EntitySystem>();
private SystemListener listener;
Expand Down

0 comments on commit cec6cab

Please sign in to comment.