Change conditional limit to >=

edge case
This commit is contained in:
Triplelexx 2015-02-11 00:18:08 +00:00
parent 93366e068f
commit 84d7ae6b3a

View file

@ -882,7 +882,7 @@ void ApplicationOverlay::renderAudioMeter() {
audioLevel = AUDIO_GREEN_START;
}
// Draw Blue Quad
if (audioLevel > 0) {
if (audioLevel >= 0) {
glm::vec4 quadColor;
if (!isClipping) {
quadColor = AUDIO_METER_BLUE;