Fix T92689: Assert loading file with a sound.

Dummy mistake in rBc8c53ceecc30 (boolean inversion).
This commit is contained in:
Bastien Montagne 2021-11-01 16:42:50 +01:00
parent d56d3fc6b1
commit 1704a394d8
Notes: blender-bot 2023-02-14 08:33:26 +01:00
Referenced by issue #92689, Assert loading file with a sound
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@ static bool seq_foreach_member_id_cb(Sequence *seq, void *user_data)
{ \
CHECK_TYPE(&((_id_super)->id), ID *); \
BKE_lib_query_foreachid_process((_data), (ID **)&(_id_super), (_cb_flag)); \
if (!BKE_lib_query_foreachid_iter_stop((_data))) { \
if (BKE_lib_query_foreachid_iter_stop((_data))) { \
return false; \
} \
} \