From 100970c8d79c3910d2ef85b430bbf1fce82a5d9c Mon Sep 17 00:00:00 2001 From: Steven Fuller Date: Sat, 21 Nov 2009 16:03:57 -0800 Subject: [PATCH] Removed obsolete SI-era OpenAL initialization. --- src/openal.c | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/src/openal.c b/src/openal.c index 948a5bc..70418c8 100644 --- a/src/openal.c +++ b/src/openal.c @@ -171,16 +171,11 @@ int PlatStartSoundSys() { int initSources; int i; - char buf[42]; - ALfloat pos[] = { 0.0, 0.0, 0.0 }, - vel[] = { 0.0, 0.0, 0.0 }, - or[] = { 0.0, 0.0, 1.0, 0.0, -1.0, 0.0 }; + ALfloat pos[] = { 0.0, 0.0, 0.0 }; + ALfloat vel[] = { 0.0, 0.0, 0.0 }; + ALfloat or[] = { 0.0, 0.0, 1.0, 0.0, -1.0, 0.0 }; - int attrlist[6] = { - ALC_FREQUENCY, 0, - ALC_SYNC, AL_FALSE, - 0 - }; + int attrlist[6]; /* Set the globals. */ SoundConfig.flags = 0; @@ -199,13 +194,7 @@ int PlatStartSoundSys() attrlist[3] = AL_FALSE; attrlist[4] = 0; -#if defined(_MSC_VER) - buf[0] = 0; -#else - _snprintf(buf, sizeof(buf), "'( (sampling-rate %d ))\n", AvpFrequency); -#endif - - AvpSoundDevice = alcOpenDevice(buf); + AvpSoundDevice = alcOpenDevice(NULL); if (AvpSoundDevice == NULL) { return 0; }