summaryrefslogtreecommitdiff
path: root/libs/ardour/io.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/io.cc')
-rw-r--r--libs/ardour/io.cc11
1 files changed, 3 insertions, 8 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index fa30463bd4..87c03c6b70 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -55,7 +55,8 @@ extern "C" int isinf (double);
using namespace std;
using namespace ARDOUR;
-//using namespace sigc;
+using namespace PBD;
+
static float current_automation_version_number = 1.0;
@@ -2443,12 +2444,6 @@ IO::state_factory (std::string why) const
return state;
}
-void
-IO::send_state_changed ()
-{
- return;
-}
-
/**
Update the peak meters.
@@ -2493,7 +2488,7 @@ IO::meter ()
} else {
// do falloff
new_peak = _visible_peak_power[n] - _session.meter_falloff();
- _visible_peak_power[n] = max (new_peak, -200.0f);
+ _visible_peak_power[n] = max (new_peak, -INFINITY);
}
}
}