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-11-12 07:37:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-12 07:37:28 +0400
commit955b5db5e9840b597ed1d7e99825c17c3120295c (patch)
treebd46cf307d7d724d13edec29ff0564e80b5c0389 /source/blender/editors
parent5d8a207b67aee18cadec742246b9dc9c052bd344 (diff)
build fix: recent commit broke building on 64bit linux
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/gpencil/gpencil_paint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index 9be7446677c..ad974e8b464 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -780,7 +780,7 @@ static short gp_stroke_eraser_splitdel(bGPDframe *gpf, bGPDstroke *gps, int i)
float delta = pt_tmp[1].time;
int j;
- gps->inittime += delta;
+ gps->inittime += (double)delta;
pts = gps->points;
for (j = 0; j < gps->totpoints; j++, pts++) {
@@ -817,7 +817,7 @@ static short gp_stroke_eraser_splitdel(bGPDframe *gpf, bGPDstroke *gps, int i)
float delta = pt_tmp[i].time;
int j;
- gsn->inittime += delta;
+ gsn->inittime += (double)delta;
pts = gsn->points;
for (j = 0; j < gsn->totpoints; j++, pts++) {