Changeset 4129 in orxonox.OLD for orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.cc
- Timestamp:
- May 9, 2005, 4:41:53 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.cc
r4125 r4129 291 291 } 292 292 else 293 this->particles = new Particle; 293 { 294 PRINTF(5)("Generating new Particle\n"); 295 this->particles = new Particle; 296 } 294 297 this->particles->next = NULL; 295 298 } … … 304 307 } 305 308 else 306 tmpPart = new Particle; 309 { 310 PRINTF(5)("Generating new Particle\n"); 311 tmpPart = new Particle; 312 } 307 313 tmpPart->next = this->particles; 308 314 this->particles = tmpPart;
Note: See TracChangeset
for help on using the changeset viewer.