From 354ef89d2045b70048d1d92a5591d653dec69d8e Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Wed, 17 May 2023 01:03:47 +0200 Subject: [PATCH] Fix lite build error Missing dummy function definition in 4dc026ec8e. --- source/blender/blenkernel/intern/sound.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c index 549e5fec02f..5080ab77ebd 100644 --- a/source/blender/blenkernel/intern/sound.c +++ b/source/blender/blenkernel/intern/sound.c @@ -1384,6 +1384,12 @@ void BKE_sound_set_scene_sound_pitch(void *UNUSED(handle), char UNUSED(animated)) { } +void BKE_sound_set_scene_sound_pitch_at_frame(void *UNUSED(handle), + int UNUSED(frame), + float UNUSED(pitch), + char(animated)); +{ +} void BKE_sound_set_scene_sound_pitch_constant_range(void *UNUSED(handle), int UNUSED(frame_start), int UNUSED(frame_end),