mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 23:10:34 +00:00
Audio fixes
This commit is contained in:
parent
33fd33b03a
commit
32d3ea0a2d
3 changed files with 109 additions and 104 deletions
|
@ -521,7 +521,7 @@ void CStream::Pause()
|
|||
if ( !HasSource() ) return;
|
||||
ALint sourceState = AL_PAUSED;
|
||||
alGetSourcei(m_pAlSources[0], AL_SOURCE_STATE, &sourceState);
|
||||
if (sourceState != AL_PAUSED )
|
||||
if (sourceState != AL_PAUSED)
|
||||
alSourcePause(m_pAlSources[0]);
|
||||
alGetSourcei(m_pAlSources[1], AL_SOURCE_STATE, &sourceState);
|
||||
if (sourceState != AL_PAUSED)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue