More RtError updates in various project files.

This commit is contained in:
Gary Scavone
2014-04-11 09:44:49 -04:00
parent caf7d2f2eb
commit a239b58651
13 changed files with 39 additions and 36 deletions

View File

@@ -133,7 +133,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;
}
@@ -152,7 +152,7 @@ int main( int argc, char *argv[] )
try {
dac.startStream();
}
catch ( RtError &error ) {
catch ( RtAudioError &error ) {
error.printMessage();
goto cleanup;
}
@@ -165,7 +165,7 @@ int main( int argc, char *argv[] )
try {
dac.closeStream();
}
catch ( RtError &error ) {
catch ( RtAudioError &error ) {
error.printMessage();
}