mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
fix DSP load indicator color
This commit is contained in:
parent
d03352cfac
commit
324938f017
1 changed files with 2 additions and 2 deletions
|
|
@ -68,11 +68,11 @@ ArdourGauge::Status
|
|||
DspLoadIndicator::indicator () const
|
||||
{
|
||||
if (_dsp_load > 90) {
|
||||
return ArdourGauge::Level_OK;
|
||||
return ArdourGauge::Level_CRIT;
|
||||
} else if (_dsp_load > 80) {
|
||||
return ArdourGauge::Level_WARN;
|
||||
} else {
|
||||
return ArdourGauge::Level_CRIT;
|
||||
return ArdourGauge::Level_OK;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue