I don't see a reason for these operations to be separated

git-svn-id: https://svn.eduke32.com/eduke32@7281 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2018-12-15 01:39:36 +00:00
parent ea94b36dec
commit 30cc6a35e8
1 changed files with 1 additions and 2 deletions

View File

@ -919,8 +919,7 @@ void S_Callback(uint32_t num)
if ((int32_t)num == MUSIC_ID) if ((int32_t)num == MUSIC_ID)
return; return;
dq[dnum & (DQSIZE - 1)] = num; dq[dnum++ & (DQSIZE - 1)] = num;
dnum++;
} }
void S_ClearSoundLocks(void) void S_ClearSoundLocks(void)