mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 23:33:48 +02:00
Change conditional limit to >=
edge case
This commit is contained in:
parent
93366e068f
commit
84d7ae6b3a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue