quiet compiler

This commit is contained in:
Seth Alves 2015-05-06 09:05:13 -07:00
parent ff104bb915
commit 7a5fe8a34e

View file

@ -835,7 +835,7 @@ void ApplicationOverlay::renderAudioMeter() {
const glm::vec4 AUDIO_METER_GREEN = { 0.0, 1.0, 0.0, 1.0 };
const glm::vec4 AUDIO_METER_RED = { 1.0, 0.0, 0.0, 1.0 };
const float AUDIO_GREEN_START = 0.25 * AUDIO_METER_SCALE_WIDTH;
const float AUDIO_RED_START = 0.80 * AUDIO_METER_SCALE_WIDTH;
const float AUDIO_RED_START = 0.80f * AUDIO_METER_SCALE_WIDTH;
const float CLIPPING_INDICATOR_TIME = 1.0f;
const float AUDIO_METER_AVERAGING = 0.5;
const float LOG2 = log(2.0f);