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>2011-02-07 04:45:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-07 04:45:52 +0300
commita018bfba9ad925e563dfa7f1512b2e5925547ea1 (patch)
treeeb554cf7ade87cdf56aa910e1595d2e4804b905e /source/blender/blenkernel/intern/particle.c
parenta4f0c29a230e2c279db5b4223c216a5dff7e087c (diff)
comment unused var
Diffstat (limited to 'source/blender/blenkernel/intern/particle.c')
-rw-r--r--source/blender/blenkernel/intern/particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c
index f6b97dcb78e..12aa40a23d8 100644
--- a/source/blender/blenkernel/intern/particle.c
+++ b/source/blender/blenkernel/intern/particle.c
@@ -2863,7 +2863,7 @@ void psys_cache_paths(ParticleSimulationData *sim, float cfra)
PARTICLE_P;
float birthtime = 0.0, dietime = 0.0;
- float t, time = 0.0, dfra = 1.0, frs_sec = sim->scene->r.frs_sec;
+ float t, time = 0.0, dfra = 1.0 /* , frs_sec = sim->scene->r.frs_sec*/ /*UNUSED*/;
float col[4] = {0.5f, 0.5f, 0.5f, 1.0f};
float prev_tangent[3] = {0.0f, 0.0f, 0.0f}, hairmat[4][4];
float rotmat[3][3];