There's still a little bug in my recent change...

This commit is contained in:
Thilo Schulz 2006-11-26 11:12:35 +00:00
parent 26cf8f2987
commit 4502f863d4

View file

@ -138,7 +138,7 @@ static sfxHandle_t S_AL_BufferFindFree( void )
// Got one // Got one
if(knownSfx[i].filename[0] == '\0') if(knownSfx[i].filename[0] == '\0')
{ {
if(i > numSfx) if(i >= numSfx)
numSfx = i + 1; numSfx = i + 1;
return i; return i;
} }