mirror of
https://github.com/holub/mame
synced 2025-04-18 06:22:45 +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 );
|
pulseaudioState = pa_stream_get_state( stream->outputStream );
|
||||||
PaPulseAudio_UnLock( pulseaudioHostApi->mainloop );
|
PaPulseAudio_UnLock( pulseaudioHostApi->mainloop );
|
||||||
|
|
||||||
if( pulseaudioState = PA_STREAM_READY )
|
if( pulseaudioState == PA_STREAM_READY )
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user