mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +00:00
Fix the sounds at the end of the episode 3 cutscene.
git-svn-id: https://svn.eduke32.com/eduke32@5153 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
2a65ba123c
commit
d320ea6d70
1 changed files with 1 additions and 1 deletions
|
@ -893,5 +893,5 @@ int32_t A_CheckAnySoundPlaying(int32_t i)
|
||||||
int32_t S_CheckSoundPlaying(int32_t i, int32_t num)
|
int32_t S_CheckSoundPlaying(int32_t i, int32_t num)
|
||||||
{
|
{
|
||||||
if (EDUKE32_PREDICT_FALSE((unsigned)num > (unsigned)g_maxSoundPos)) return 0;
|
if (EDUKE32_PREDICT_FALSE((unsigned)num > (unsigned)g_maxSoundPos)) return 0;
|
||||||
return (i == -1) ? (g_soundlocks[num] >= 200) : g_sounds[num].num;
|
return (i == -1) ? (g_soundlocks[num] > 200) : g_sounds[num].num;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue