diff options
author | Chris Robinson <[email protected]> | 2009-08-14 07:27:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-08-14 07:27:19 -0700 |
commit | 4031ee5ef08326e0e33cb561f9e3c9662891b588 (patch) | |
tree | e1afab2d07911875eef142b713994673b3820534 /Alc/dsound.c | |
parent | e0792912028d143b89b3835b2a7203693a494d0f (diff) |
Fix speaker override check
Diffstat (limited to 'Alc/dsound.c')
-rw-r--r-- | Alc/dsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c index b840e04b..d9ca73e6 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -222,7 +222,7 @@ static ALCboolean DSoundStartContext(ALCdevice *device, ALCcontext *context) memset(&OutputType, 0, sizeof(OutputType)); hr = IDirectSound_GetSpeakerConfig(pData->lpDS, &speakers); - if(SUCCEEDED(hr) && *(GetConfigValue(NULL, "format", "")) == 0) + if(SUCCEEDED(hr) && *(GetConfigValue(NULL, "format", "")) != 0) { if(device->Format == AL_FORMAT_MONO8 || device->Format == AL_FORMAT_MONO16) speakers = DSSPEAKER_COMBINED(DSSPEAKER_MONO, 0); |