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:
-rw-r--r--source/blender/blenkernel/intern/sound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 3bb95eaeff0..f0545ae56bd 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -550,12 +550,12 @@ void BKE_sound_destroy_scene(Scene *scene)
}
}
-void BKE_sound_lock_scene(struct Scene *scene)
+void BKE_sound_lock_scene(struct Scene *UNUSED(scene))
{
AUD_Device_lock(sound_device);
}
-void BKE_sound_unlock_scene(struct Scene *scene)
+void BKE_sound_unlock_scene(struct Scene *UNUSED(scene))
{
AUD_Device_unlock(sound_device);
}