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/depsgraph
parent10bd3fb4cb186f927d8839d2da28eeb90d6722f3 (diff)
Cleanup: Removing unused parameter.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval_runtime_backup_scene.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup_scene.cc b/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup_scene.cc
index 36d0138f697..32b2d0b93c1 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup_scene.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval_runtime_backup_scene.cc
@@ -46,7 +46,7 @@ void SceneBackup::reset()
void SceneBackup::init_from_scene(Scene *scene)
{
- BKE_sound_lock_scene(scene);
+ BKE_sound_lock();
sound_scene = scene->sound_scene;
playback_handle = scene->playback_handle;
@@ -80,7 +80,7 @@ void SceneBackup::restore_to_scene(Scene *scene)
sequencer_backup.restore_to_scene(scene);
- BKE_sound_unlock_scene(scene);
+ BKE_sound_unlock();
reset();
}