(svn r8860) -Cleanup: some style changes, proper #endif comments, variable initialisation, WINCE ifdef and a vsprintf to vsnprintf change.

This commit is contained in:
Darkvater
2007-02-23 12:56:10 +00:00
parent 6d199fcdb7
commit 1bbbbeeef1
15 changed files with 29 additions and 44 deletions

View File

@@ -37,7 +37,7 @@ void InitializeSoundPool(void)
FileEntry *GetSound(uint index)
{
if (index >= _sound_count) return NULL;
if (index >= GetNumSounds()) return NULL;
return GetSoundInternal(index);
}