diff --git a/Alc/alcReverb.c b/Alc/alcReverb.c index d8c06dc4..5a742593 100644 --- a/Alc/alcReverb.c +++ b/Alc/alcReverb.c @@ -684,6 +684,7 @@ static ALboolean AllocLines(ALuint frequency, ALverbState *State) if(totalSamples != State->TotalSamples) { + TRACE("New reverb buffer length: %u samples (%f sec)\n", totalSamples, totalSamples/(float)frequency); newBuffer = realloc(State->SampleBuffer, sizeof(ALfloat) * totalSamples); if(newBuffer == NULL) return AL_FALSE;