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:
authorAntonioya <blendergit@gmail.com>2018-10-24 23:35:37 +0300
committerAntonioya <blendergit@gmail.com>2018-10-24 23:53:28 +0300
commit40825022399a2966cf39d8f6bca6cc3ce7f270cc (patch)
treebe4724f19a0489d3e46e7473eb18299d782aa66b /source/blender/gpencil_modifiers
parent97ec802da7a6bd99f79875fce459659f6218862e (diff)
GP: Fix compiler warnings
Diffstat (limited to 'source/blender/gpencil_modifiers')
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c b/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c
index a98078a6490..e2a257fcb43 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencilbuild.c
@@ -439,12 +439,12 @@ static void generateStrokes(
if (mmd->layer_pass > 0) {
if ((mmd->flag & GP_BUILD_INVERT_LAYERPASS) == 0) {
if (gpl->pass_index != mmd->layer_pass) {
- return false;
+ return;
}
}
else {
if (gpl->pass_index == mmd->layer_pass) {
- return false;
+ return;
}
}
}