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:
authorJulian Eisel <julian@blender.org>2022-02-01 01:48:16 +0300
committerJulian Eisel <julian@blender.org>2022-02-01 01:48:43 +0300
commit1d1859c3c488f6be7a3635816914888ad102f3f7 (patch)
tree81a6f00931a749f66660f8a3b8d7d5cd5355aadf /source/blender/sequencer/intern
parentbff83ecee51b81a583ea954f61ca907c2a0d1d56 (diff)
Fix compile error with audaspace disabled
Argument was removed in a recent commit.
Diffstat (limited to 'source/blender/sequencer/intern')
-rw-r--r--source/blender/sequencer/intern/strip_add.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/sequencer/intern/strip_add.c b/source/blender/sequencer/intern/strip_add.c
index 93950782295..be29dcfcd0c 100644
--- a/source/blender/sequencer/intern/strip_add.c
+++ b/source/blender/sequencer/intern/strip_add.c
@@ -361,8 +361,7 @@ 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),
- SeqLoadData *UNUSED(load_data),
- const double UNUSED(audio_offset))
+ SeqLoadData *UNUSED(load_data))
{
return NULL;
}