mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-31 21:45:33 +00:00
Fix a leftover of the old coordinate system
This commit is contained in:
parent
2196ce427a
commit
396efd580b
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ void OpenAL_SoundStream::update()
|
|||
|
||||
alSourcef(mSource, AL_GAIN, gain);
|
||||
alSourcef(mSource, AL_PITCH, pitch);
|
||||
alSource3f(mSource, AL_POSITION, mPos[0], mPos[2], -mPos[1]);
|
||||
alSource3f(mSource, AL_POSITION, mPos[0], mPos[1], mPos[2]);
|
||||
alSource3f(mSource, AL_DIRECTION, 0.0f, 0.0f, 0.0f);
|
||||
alSource3f(mSource, AL_VELOCITY, 0.0f, 0.0f, 0.0f);
|
||||
throwALerror();
|
||||
|
|
Loading…
Reference in a new issue