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>2013-11-04 05:18:33 +0400
committerJoshua Leung <aligorith@gmail.com>2013-11-04 05:18:33 +0400
commit0b2d9ffaebc04214a65977b2c6f189aae262439b (patch)
treeb7fd8974b0fe410f5bc91478f8ed0015cd11ceea /source/blender/editors/space_graph
parent65633d7be25b81dc6837098909e1662dc03939e2 (diff)
Fix for uninitialised var
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index ebb9266149a..db13e2a4024 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -1986,7 +1986,7 @@ static void mirror_graph_keys(bAnimContext *ac, short mode)
KeyframeEditData ked;
KeyframeEditFunc edit_cb;
- float cursor_value;
+ float cursor_value = 0.0f;
/* get beztriple editing callbacks */
edit_cb = ANIM_editkeyframes_mirror(mode);