mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
This bounds check is useless
git-svn-id: https://svn.eduke32.com/eduke32@7161 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
4206cc1786
commit
cde7529e39
1 changed files with 2 additions and 2 deletions
|
@ -6141,7 +6141,7 @@ repeatcase:
|
|||
if (k > g_highestSoundIdx)
|
||||
g_highestSoundIdx = k;
|
||||
|
||||
if (k >= 0 && k < MAXSOUNDS-1 && g_dynamicSoundMapping && j >= 0 && (labeltype[j] & LABEL_DEFINE))
|
||||
if (g_dynamicSoundMapping && j >= 0 && (labeltype[j] & LABEL_DEFINE))
|
||||
G_ProcessDynamicSoundMapping(label+(j<<6), k);
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue