From bdec24b40d69e875f63657716becc5dd573536f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20M=C3=BCller?= Date: Sat, 28 Mar 2020 09:14:07 +0100 Subject: Cleanup: Removing unused parameter. --- source/blender/blenkernel/intern/sound.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenkernel/intern/sound.c') diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c index f0545ae56bd..a06f73b2003 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 *UNUSED(scene)) +void BKE_sound_lock() { AUD_Device_lock(sound_device); } -void BKE_sound_unlock_scene(struct Scene *UNUSED(scene)) +void BKE_sound_unlock() { AUD_Device_unlock(sound_device); } @@ -1161,10 +1161,10 @@ void BKE_sound_create_scene(Scene *UNUSED(scene)) void BKE_sound_destroy_scene(Scene *UNUSED(scene)) { } -void BKE_sound_lock_scene(Scene *UNUSED(scene)) +void BKE_sound_lock() { } -void BKE_sound_unlock_scene(Scene *UNUSED(scene)) +void BKE_sound_unlock() { } void BKE_sound_reset_scene_specs(Scene *UNUSED(scene)) -- cgit v1.2.3