Updated to new releases of RtAudio and RtMidi.

This commit is contained in:
Gary Scavone
2014-04-11 09:29:42 -04:00
parent 3ee62e42d0
commit caf7d2f2eb
10 changed files with 2751 additions and 1926 deletions

View File

@@ -262,7 +262,7 @@ int main( int argc, char *argv[] )
try {
dac.openStream( &parameters, NULL, format, (unsigned int)Stk::sampleRate(), &bufferFrames, &tick, (void *)&data );
}
catch ( RtError& error ) {
catch ( RtAudioError& error ) {
error.printMessage();
goto cleanup;
}
@@ -282,7 +282,7 @@ int main( int argc, char *argv[] )
try {
dac.startStream();
}
catch ( RtError &error ) {
catch ( RtAudioError &error ) {
error.printMessage();
goto cleanup;
}
@@ -307,7 +307,7 @@ int main( int argc, char *argv[] )
try {
dac.closeStream();
}
catch ( RtError& error ) {
catch ( RtAudioError& error ) {
error.printMessage();
}
}