TINSEL: Correcting my previous commit, oops

svn-id: r54030
This commit is contained in:
Max Horn 2010-11-01 21:36:39 +00:00
parent 9cadcf4c5b
commit cba30ee716

@ -629,7 +629,7 @@ int NextTaggedActor() {
PMOVER pActor;
bool hid;
while (ti < NumActors); {
while (ti < NumActors) {
if (actorInfo[ti].tagged) {
pActor = GetMover(ti+1);
if (pActor)
@ -642,7 +642,7 @@ int NextTaggedActor() {
}
}
++ti;
} while (++ti < NumActors);
}
return 0;
}