We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8930db5 commit a736809Copy full SHA for a736809
libs/openFrameworks/sound/ofRtAudioSoundStream.cpp
@@ -146,7 +146,8 @@ bool ofRtAudioSoundStream::setup(const ofSoundStreamSettings & settings_)
146
ofLogNotice() << "Initialing RtAudio with UNSPECIFIED API";
147
audio = std::make_shared<RtAudio>();
148
}
149
- ofLogNotice() << "Initialized RtAudio with API: " << RtAudio::getApiName(audio->getCurrentApi());
+ //needs latest RtAudio - this breaks in slightly older linux
150
+ //ofLogNotice() << "Initialized RtAudio with API: " << RtAudio::getApiName(audio->getCurrentApi());
151
152
catch (std::exception &error) {
153
ofLogError() << "Failed to initialize RtAudio: " << error.what();
0 commit comments