* snd_mem.c: Remove prototype for non-existant function S_Alloc().

Remove unused global cache_full_cycle. Comment out unused function
DumpChunks().


git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@341 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-10-18 20:39:10 +00:00
parent 6869b0c6d5
commit 3a41b14315

View file

@ -22,10 +22,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "quakedef.h"
int cache_full_cycle;
byte *S_Alloc (int size);
/*
================
ResampleSfx
@ -111,6 +107,7 @@ sfxcache_t *S_LoadSound (sfx_t *s)
return sc;
// Con_Printf ("S_LoadSound: %x\n", (int)stackbuf);
// load it in
Q_strcpy(namebuffer, "sound/");
Q_strcat(namebuffer, s->name);
@ -224,7 +221,7 @@ void FindChunk(const char *name)
FindNextChunk (name);
}
#if 0
void DumpChunks(void)
{
char str[5];
@ -240,6 +237,7 @@ void DumpChunks(void)
data_p += (iff_chunk_len + 1) & ~1;
} while (data_p < iff_end);
}
#endif
/*
============
@ -271,7 +269,9 @@ wavinfo_t GetWavinfo (const char *name, byte *wav, int wavlength)
// get "fmt " chunk
iff_data = data_p + 12;
// DumpChunks ();
#if 0
DumpChunks ();
#endif
FindChunk("fmt ");
if (!data_p)