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
1 changed files with 1 additions and 1 deletions

View File

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