mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Fix DSP load sorting with inactive plugins
This commit is contained in:
parent
c49c17ffff
commit
a9f6484816
1 changed files with 2 additions and 2 deletions
|
|
@ -37,8 +37,8 @@ public:
|
|||
void start_updating ();
|
||||
void stop_updating ();
|
||||
|
||||
double dsp_avg () const { return _valid ? _avg : -1; }
|
||||
double dsp_max () const { return _valid ? _max : -1; }
|
||||
double dsp_avg () const { return _valid ? _avg : -1; }
|
||||
uint64_t dsp_max () const { return _valid ? _max : 0; }
|
||||
|
||||
private:
|
||||
void update_cpu_label ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue