(svn r3552) Remove the global variable _mixer

This commit is contained in:
tron
2006-02-05 09:56:04 +00:00
parent f00f4f5b47
commit 81d7f496c6
6 changed files with 15 additions and 25 deletions

View File

@@ -13,7 +13,7 @@
static void CDECL fill_sound_buffer(void *userdata, Uint8 *stream, int len)
{
MxMixSamples(_mixer, stream, len / 4);
MxMixSamples(stream, len / 4);
}
static const char *SdlSoundStart(const char * const *parm)