Skip to content

Commit

Permalink
Fixing Issue #39
Browse files Browse the repository at this point in the history
  • Loading branch information
tpastor committed Jul 17, 2013
1 parent 485ad8d commit 359abfb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ protected IntervalEntityProcessingSystem(TimeSpan timeSpan, Aspect aspect)
/// <param name="entities">The entities.</param>
protected override void ProcessEntities(IDictionary<int, Entity> entities)
{
for (int index = 0, s = entities.Count; s > index; ++index)
foreach (Entity entity in entities.Values)
{
this.Process(entities[index]);
this.Process(entity);
}
}
}
Expand Down

0 comments on commit 359abfb

Please sign in to comment.