Print a message when loading the "none" reverb preset

This commit is contained in:
Chris Robinson
2012-02-23 13:49:46 -08:00
parent 973b92b8fd
commit 45c10229d9
+2 -1
View File
@@ -1455,9 +1455,10 @@ ALvoid GetReverbEffect(const char *name, ALeffect *effect)
{
int i;
if(strcasecmp(name, "none") == 0)
if(strcasecmp(name, "NONE") == 0)
{
InitEffectParams(effect, AL_EFFECT_NULL);
TRACE("Loading reverb '%s'\n", "NONE");
return;
}