Skip to content

Commit 42c99e5

Browse files
committed
AudioKit
1 parent 37c60cd commit 42c99e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/AudioLibs/AudioKit.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class AudioKitStream : public AudioStreamX {
188188
}
189189

190190
/// Starts the processing
191-
void begin(AudioKitStreamConfig config) {
191+
bool begin(AudioKitStreamConfig config) {
192192
TRACED();
193193
AudioStream::setAudioInfo(config);
194194
cfg = config;
@@ -210,6 +210,7 @@ class AudioKitStream : public AudioStreamX {
210210
// set initial volume
211211
setVolume(volume_value);
212212
is_started = true;
213+
return true;
213214
}
214215

215216
// restart after end with initial parameters

0 commit comments

Comments
 (0)