Fix Fuild error with lite build

With audaspace disabled, function SEQ_add_sound_strip was declared as prototype.
This commit is contained in:
Richard Antalik 2021-03-02 17:47:21 +01:00
parent 82e7032477
commit 9c604ab0ca
1 changed files with 4 additions and 1 deletions

View File

@ -406,7 +406,10 @@ Sequence *SEQ_add_sound_strip(Main *bmain, Scene *scene, ListBase *seqbase, SeqL
Sequence *SEQ_add_sound_strip(Main *UNUSED(bmain),
Scene *UNUSED(scene),
ListBase *UNUSED(seqbase),
const SeqLoadData *UNUSED(load_data))
SeqLoadData *UNUSED(load_data))
{
return NULL;
}
#endif // WITH_AUDASPACE
/**