mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-18 16:19:22 +00:00
Audio fixes
This commit is contained in:
parent
150f5302b7
commit
63e9f6d826
2 changed files with 75 additions and 75 deletions
|
@ -466,7 +466,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