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>2020-05-05 09:12:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-05 09:26:14 +0300
commitdb09b57d4eedd372a5a995c7393ad6356fa734af (patch)
treed2c49b75c197d5b92b31d3000439095ec9eb4e8e /source/blender/editors/physics/particle_edit.c
parent65194dc71a39d76d611a66400fb202a2dbd1c249 (diff)
Cleanup: use int instead of short for lasso array length
There was no reason to use a short here, this was just a convention from existing code.
Diffstat (limited to 'source/blender/editors/physics/particle_edit.c')
-rw-r--r--source/blender/editors/physics/particle_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index 604f66002c2..216dfe313c7 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -2252,7 +2252,7 @@ bool PE_circle_select(bContext *C, const int sel_op, const int mval[2], float ra
/************************ lasso select operator ************************/
-int PE_lasso_select(bContext *C, const int mcoords[][2], const short mcoords_len, const int sel_op)
+int PE_lasso_select(bContext *C, const int mcoords[][2], const int mcoords_len, const int sel_op)
{
Depsgraph *depsgraph = CTX_data_depsgraph_pointer(C);
Scene *scene = CTX_data_scene(C);