diff options
Diffstat (limited to 'OpenAL32/alPreset.c')
-rw-r--r-- | OpenAL32/alPreset.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenAL32/alPreset.c b/OpenAL32/alPreset.c index c01f4e80..9e4eed4f 100644 --- a/OpenAL32/alPreset.c +++ b/OpenAL32/alPreset.c @@ -109,8 +109,7 @@ AL_API ALboolean AL_APIENTRY alIsPresetSOFT(ALuint id) context = GetContextRef(); if(!context) return AL_FALSE; - ret = ((!id || LookupPreset(context->Device, id)) ? - AL_TRUE : AL_FALSE); + ret = LookupPreset(context->Device, id) ? AL_TRUE : AL_FALSE; ALCcontext_DecRef(context); |