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:
authorJörg Müller <nexyon@gmail.com>2020-03-28 11:14:07 +0300
committerJörg Müller <nexyon@gmail.com>2020-03-28 11:14:07 +0300
commitbdec24b40d69e875f63657716becc5dd573536f3 (patch)
tree3f7f0077c4f9cf5ff999e7e01f1ae0f7a9036128 /source/blender/blenkernel/intern/sound.c
parent10bd3fb4cb186f927d8839d2da28eeb90d6722f3 (diff)
Cleanup: Removing unused parameter.
Diffstat (limited to 'source/blender/blenkernel/intern/sound.c')
-rw-r--r--source/blender/blenkernel/intern/sound.c8
1 files changed, 4 insertions, 4 deletions
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))