PortAudio: Uncomment Pa_Terminate

Thanks to the threading changes, proper teardown can now be allowed.
This commit is contained in:
Silent 2021-09-21 22:29:27 +02:00 committed by Kojin
parent 0ab31a2e9f
commit b5f9e14cd3
1 changed files with 3 additions and 4 deletions

View File

@ -365,10 +365,9 @@ public:
stream = nullptr;
}
// Seems to do more harm than good.
//PaError err = Pa_Terminate();
//if( err != paNoError )
// fprintf(stderr,"* SPU2: PortAudio error: %s\n", Pa_GetErrorText( err ) );
PaError err = Pa_Terminate();
if( err != paNoError )
fprintf(stderr,"* SPU2: PortAudio error: %s\n", Pa_GetErrorText( err ) );
started = false;
}