summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/plugin_dspload_ui.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/plugin_dspload_ui.h b/gtk2_ardour/plugin_dspload_ui.h
index abdfaa5cf4..a89c8676b1 100644
--- a/gtk2_ardour/plugin_dspload_ui.h
+++ b/gtk2_ardour/plugin_dspload_ui.h
@@ -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 ();