summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-04-10 03:54:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-04-10 03:54:00 +0000
commita157537898eccf08009281633b19970515366a78 (patch)
treecd6f7bb1e7f9bddba1b5cc4ce6e10c60cb2b2a46 /libs/ardour/globals.cc
parent7e8a98224578e03e17fbf5e656241ff5ef1a0bc1 (diff)
a) moved metering and meter falloff code into libardour
b) added initial "big meter" mode for tranzport c) fixed some lock issues in ARDOUR::IO objects d) generic_midi control surface module now compiles and loads git-svn-id: svn://localhost/trunk/ardour2@450 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index 6aa53f5219..5fca7f07eb 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -353,7 +353,7 @@ find_file (string name, string dir, string subdir = "")
path = *i;
path += "/" + name;
if (access (path.c_str(), R_OK) == 0) {
- cerr << "Using file " << path << " found in ARDOUR_PATH." << endl;
+ // cerr << "Using file " << path << " found in ARDOUR_PATH." << endl;
return path;
}
}