Cleanup: Fix build warnings introduced in e02eeaf888
This commit is contained in:
@@ -929,8 +929,8 @@ static void seq_update_sound_modifiers(Sequence *seq)
|
||||
|
||||
static bool must_update_strip_sound(Scene *scene, Sequence *seq)
|
||||
{
|
||||
return (scene->id.recalc & ID_RECALC_AUDIO | ID_RECALC_COPY_ON_WRITE) != 0 ||
|
||||
(seq->sound->id.recalc & ID_RECALC_AUDIO | ID_RECALC_COPY_ON_WRITE) != 0;
|
||||
return (scene->id.recalc & (ID_RECALC_AUDIO | ID_RECALC_COPY_ON_WRITE)) != 0 ||
|
||||
(seq->sound->id.recalc & (ID_RECALC_AUDIO | ID_RECALC_COPY_ON_WRITE)) != 0;
|
||||
}
|
||||
|
||||
static void seq_update_sound_strips(Scene *scene, Sequence *seq)
|
||||
|
||||
Reference in New Issue
Block a user