Changeset 9386 in orxonox.OLD for branches/proxy/src/lib/particles
- Timestamp:
- Jul 21, 2006, 1:41:39 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/particles/particle_system.cc
r9371 r9386 460 460 int i = 1; 461 461 Particle* tmpPart = this->deadList; 462 while ( tmpPart = tmpPart->next) { ++i; }462 while ((tmpPart = tmpPart->next) != NULL) { ++i; } 463 463 PRINT(0)("count: %d\n", i); 464 464 }
Note: See TracChangeset
for help on using the changeset viewer.