[Bf-blender-cvs] [71e2c366f7d] master: Cleanup: Fix compiler warning

Antonio Vazquez noreply at git.blender.org
Mon Aug 9 15:28:23 CEST 2021


Commit: 71e2c366f7d19d8fe4f160a60597e63692fdc7ca
Author: Antonio Vazquez
Date:   Mon Aug 9 15:28:12 2021 +0200
Branches: master
https://developer.blender.org/rB71e2c366f7d19d8fe4f160a60597e63692fdc7ca

Cleanup: Fix compiler warning

===================================================================

M	source/blender/editors/gpencil/gpencil_paint.c

===================================================================

diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index aaea1c0ddaf..9e96c40b2db 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -997,7 +997,7 @@ static void gpencil_stroke_newfrombuffer(tGPsdata *p)
   gps->uv_scale = 1.0f;
 
   /* Set stroke caps. */
-  gps->caps[0] = gps->caps[1] = brush->gpencil_settings->caps_type;
+  gps->caps[0] = gps->caps[1] = (short)brush->gpencil_settings->caps_type;
 
   /* allocate enough memory for a continuous array for storage points */
   const int subdivide = brush->gpencil_settings->draw_subdivide;



More information about the Bf-blender-cvs mailing list