[Bf-blender-cvs] [cd64a0f52f5] temp-vse-preview-transform: fix missing return value

Richard Antalik noreply at git.blender.org
Fri Sep 10 14:27:39 CEST 2021


Commit: cd64a0f52f5fe2efedfc61a046abb216cfc19e94
Author: Richard Antalik
Date:   Fri Sep 10 14:27:07 2021 +0200
Branches: temp-vse-preview-transform
https://developer.blender.org/rBcd64a0f52f5fe2efedfc61a046abb216cfc19e94

fix missing return value

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

M	source/blender/blenloader/intern/versioning_300.c

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

diff --git a/source/blender/blenloader/intern/versioning_300.c b/source/blender/blenloader/intern/versioning_300.c
index a548de50721..a2365926fd3 100644
--- a/source/blender/blenloader/intern/versioning_300.c
+++ b/source/blender/blenloader/intern/versioning_300.c
@@ -635,6 +635,7 @@ static bool seq_transform_origin_set(Sequence *seq, void *UNUSED(user_data))
 {
   StripTransform *transform = seq->strip->transform;
   transform->origin[0] = transform->origin[1] = 0.5f;
+  return true;
 }
 
 /* NOLINTNEXTLINE: readability-function-size */



More information about the Bf-blender-cvs mailing list