Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-08-08 22:37:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-08 22:37:06 +0400
commitf0951f58ca2ffb1a7574beaac3217d3729e706c0 (patch)
tree083fa0fec7f5acc563902584b8c3c015f852bbcb /source/blender/blenkernel/intern/particle_system.c
parent0b5a995cfdca70c844186a3af9b2a01fed5e5d3f (diff)
code cleanup: rename G.afbreek --> is_break, G.rendering --> is_rendering
Diffstat (limited to 'source/blender/blenkernel/intern/particle_system.c')
-rw-r--r--source/blender/blenkernel/intern/particle_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c
index 0b3131f0a1c..bae8efa758e 100644
--- a/source/blender/blenkernel/intern/particle_system.c
+++ b/source/blender/blenkernel/intern/particle_system.c
@@ -4104,7 +4104,7 @@ static void particles_fluid_step(ParticleSimulationData *sim, int UNUSED(cfra))
}
gzread(gzf, &totpart, sizeof(totpart));
- totpart = (G.rendering)?totpart:(part->disp*totpart)/100;
+ totpart = (G.is_rendering)?totpart:(part->disp*totpart) / 100;
part->totpart= totpart;
part->sta=part->end = 1.0f;