From 4e597a5cff6bb4195b8fc9c8102bfbdc4958b31f Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 4 Mar 2020 11:05:41 +0100 Subject: Cleanup: ID make local: remove `id_in_bmain` argument. This info is now stored in ID tags themselves, so no need to pass an extra anonymous boolean parameter around, yay! --- source/blender/blenkernel/intern/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 e47ef0cb14f..ffaec89f579 100644 --- a/source/blender/blenkernel/intern/sound.c +++ b/source/blender/blenkernel/intern/sound.c @@ -219,7 +219,7 @@ void BKE_sound_copy_data(Main *UNUSED(bmain), void BKE_sound_make_local(Main *bmain, bSound *sound, const bool lib_local) { - BKE_lib_id_make_local_generic(bmain, &sound->id, true, lib_local); + BKE_lib_id_make_local_generic(bmain, &sound->id, lib_local); } #ifdef WITH_AUDASPACE -- cgit v1.2.3