Skip to content

Commit a736809

Browse files
authored
Update ofRtAudioSoundStream.cpp
closes #8290
1 parent 8930db5 commit a736809

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/openFrameworks/sound/ofRtAudioSoundStream.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ bool ofRtAudioSoundStream::setup(const ofSoundStreamSettings & settings_)
146146
ofLogNotice() << "Initialing RtAudio with UNSPECIFIED API";
147147
audio = std::make_shared<RtAudio>();
148148
}
149-
ofLogNotice() << "Initialized RtAudio with API: " << RtAudio::getApiName(audio->getCurrentApi());
149+
//needs latest RtAudio - this breaks in slightly older linux
150+
//ofLogNotice() << "Initialized RtAudio with API: " << RtAudio::getApiName(audio->getCurrentApi());
150151
}
151152
catch (std::exception &error) {
152153
ofLogError() << "Failed to initialize RtAudio: " << error.what();

0 commit comments

Comments
 (0)