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:
authorJoshua Leung <aligorith@gmail.com>2010-01-02 00:53:55 +0300
committerJoshua Leung <aligorith@gmail.com>2010-01-02 00:53:55 +0300
commit55a62b34c1519622c64351d5b7d35b71d0ab1ba9 (patch)
treed851b8a36bb36114100ca909383ec587c38af8be /source/blender/editors/space_view3d/drawanimviz.c
parenta81a98148a627558dc7fbd64b71c653e8216ba03 (diff)
Fix for 25657 - wrong var was getting used ("path" NOT "ghost")
Diffstat (limited to 'source/blender/editors/space_view3d/drawanimviz.c')
-rw-r--r--source/blender/editors/space_view3d/drawanimviz.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/drawanimviz.c b/source/blender/editors/space_view3d/drawanimviz.c
index 8a9e1077530..ac9fc83f787 100644
--- a/source/blender/editors/space_view3d/drawanimviz.c
+++ b/source/blender/editors/space_view3d/drawanimviz.c
@@ -109,8 +109,9 @@ void draw_motion_path_instance(Scene *scene, View3D *v3d, ARegion *ar,
{
//RegionView3D *rv3d= ar->regiondata;
bMotionPathVert *mpv, *mpv_start;
+ int i, stepsize= avs->path_step;
int sfra, efra, len;
- int i, stepsize= avs->ghost_step;
+
/* get frame ranges */
if (avs->path_type == MOTIONPATH_TYPE_ACFRA) {