Re: [Tuxracer-devel] too many Particles and libtcl8.x
Status: Beta
Brought to you by:
jfpatry
From: Jasmin P. <jf...@mu...> - 2000-02-29 04:23:49
|
On Mon, 28 Feb 2000, Jasmin Patry wrote: > > To follow up on the particle system bug: [snip] > *** part_sys.c.0.10 Mon Feb 28 22:12:40 2000 > --- part_sys.c Mon Feb 28 22:32:56 2000 [snip] > + if ( num_particles > MAX_PARTICLES ) { Argh, this should be changed to + if ( num_particles + num > MAX_PARTICLES ) { so that we catch it on the call that it occurs, not on the next call. Hopefully this will be my last patch on the patch. :-) Cheers, Jasmin |