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-08-30 13:50:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-30 13:50:31 +0400
commit27ec8d5043f544685001aab3552b9b4b56bc1e1a (patch)
tree2daae712833a6951ae0b3ccf73010202a3b9611d /source/blender/editors/space_graph
parentc7dcbdb830b3db615df1722922d0d40660ac3b5e (diff)
fix for some warnings with the recent merge, also tag unused args.
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c
index d65297e068d..dc5e71f0406 100644
--- a/source/blender/editors/space_graph/graph_draw.c
+++ b/source/blender/editors/space_graph/graph_draw.c
@@ -706,7 +706,7 @@ static void draw_fcurve_curve_bezts (bAnimContext *ac, ID *id, FCurve *fcu, View
if (fcu->driver)
resol= 32;
else
- resol= (int)(5.0*len_v2v2(bezt->vec[1], prevbezt->vec[1]));
+ resol= (int)(5.0f*len_v2v2(bezt->vec[1], prevbezt->vec[1]));
if (resol < 2) {
/* only draw one */