mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
3rdparty/portaudio: Fixed inadvertent assignment in PulseAudio callback.
This commit is contained in:
parent
ea3a55c607
commit
c936fd8799
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue