From 0051ebace0c419d873c1ebbe615c483c0124e70e Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 27 Jan 2018 23:50:04 -0800 Subject: Don't bother with a return value that's never used --- OpenAL32/Include/alEffect.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenAL32/Include') diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 30055f1f..4469349c 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -169,10 +169,10 @@ typedef struct ALeffect { inline ALboolean IsReverbEffect(ALenum type) { return type == AL_EFFECT_REVERB || type == AL_EFFECT_EAXREVERB; } -ALenum InitEffect(ALeffect *effect); -ALvoid ReleaseALEffects(ALCdevice *device); +void InitEffect(ALeffect *effect); +void ReleaseALEffects(ALCdevice *device); -ALvoid LoadReverbPreset(const char *name, ALeffect *effect); +void LoadReverbPreset(const char *name, ALeffect *effect); #ifdef __cplusplus } -- cgit v1.2.3