mirror of
https://github.com/holub/mame
synced 2025-04-10 02:28:19 +03:00
3rdparty/portaudio: Fixed inadvertent assignment in PulseAudio callback.
This commit is contained in:
parent
ea3a55c607
commit
c936fd8799
@ -853,7 +853,7 @@ PaError PaPulseAudio_StartStreamCb( PaStream * s )
|
||||
pulseaudioState = pa_stream_get_state( stream->outputStream );
|
||||
PaPulseAudio_UnLock( pulseaudioHostApi->mainloop );
|
||||
|
||||
if( pulseaudioState = PA_STREAM_READY )
|
||||
if( pulseaudioState == PA_STREAM_READY )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user