mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Apply the same bugfix as r4947 to XA sounds so that they only loop when intended.
git-svn-id: https://svn.eduke32.com/eduke32@5891 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5381e729f8
commit
9ce6cd2009
1 changed files with 1 additions and 1 deletions
|
@ -419,7 +419,7 @@ int32_t MV_PlayXA3D
|
||||||
right = MV_PanTable[ angle ][ volume ].right;
|
right = MV_PanTable[ angle ][ volume ].right;
|
||||||
mid = max( 0, 255 - distance );
|
mid = max( 0, 255 - distance );
|
||||||
|
|
||||||
status = MV_PlayXA(ptr, ptrlength, pitchoffset, loophow, -1, mid, left, right, priority, callbackval);
|
status = MV_PlayXA(ptr, ptrlength, loophow, -1, pitchoffset, mid, left, right, priority, callbackval);
|
||||||
|
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue