mirror of
https://github.com/lubosz/overte.git
synced 2025-04-25 00:03:16 +02:00
Coding standard fixes
Corrected else format, removed additional comment to fit other declarations and break block.
This commit is contained in:
parent
260f960ccc
commit
e2f942c026
1 changed files with 2 additions and 3 deletions
|
@ -881,13 +881,12 @@ void ApplicationOverlay::renderAudioMeter() {
|
|||
|
||||
audioLevel = AUDIO_GREEN_START;
|
||||
}
|
||||
// Draw Blue Quad
|
||||
|
||||
if (audioLevel >= 0) {
|
||||
glm::vec4 quadColor;
|
||||
if (!isClipping) {
|
||||
quadColor = AUDIO_METER_BLUE;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
quadColor = glm::vec4(1, 1, 1, 1);
|
||||
}
|
||||
// Draw Blue (low level) quad
|
||||
|
|
Loading…
Reference in a new issue