simple one.

This commit is contained in:
Jason Felds
2013-05-01 22:10:36 -04:00
parent bec4640ee3
commit c788253faa
+2 -2
View File
@@ -108,9 +108,9 @@ vector<RString> AttackArray::ToVectorString() const
void AttackArray::UpdateStartTimes(float delta) void AttackArray::UpdateStartTimes(float delta)
{ {
FOREACH(Attack, *this, a) for (Attack &a : *this)
{ {
a->fStartSecond += delta; a.fStartSecond += delta;
} }
} }