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>2018-12-30 07:14:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-30 07:15:05 +0300
commit543ddbe6bfa8072b4c09ccc9abe27237d3598db5 (patch)
tree3d7ca08c1c16389e803721597817f11c53325523 /source/blender/editors/gpencil/annotate_paint.c
parent266b1e2cdbc19466ac452cc3cb08273d6f37b341 (diff)
Cleanup: warnings (clang)
Diffstat (limited to 'source/blender/editors/gpencil/annotate_paint.c')
-rw-r--r--source/blender/editors/gpencil/annotate_paint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/annotate_paint.c b/source/blender/editors/gpencil/annotate_paint.c
index a868e98e3dd..b6f81c81823 100644
--- a/source/blender/editors/gpencil/annotate_paint.c
+++ b/source/blender/editors/gpencil/annotate_paint.c
@@ -1697,8 +1697,8 @@ static void gpencil_draw_apply_event(wmOperator *op, const wmEvent *event, Depsg
/* verify key status for straight lines */
if ((event->ctrl > 0) || (event->alt > 0)) {
if (p->straight[0] == 0) {
- int dx = abs(p->mval[0] - p->mvalo[0]);
- int dy = abs(p->mval[1] - p->mvalo[1]);
+ int dx = abs((int)(p->mval[0] - p->mvalo[0]));
+ int dy = abs((int)(p->mval[1] - p->mvalo[1]));
if ((dx > 0) || (dy > 0)) {
/* check mouse direction to replace the other coordinate with previous values */
if (dx >= dy) {