summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-04-04 03:26:08 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-04-04 03:26:08 +0000
commitf7c82c69113419a8db083f0095044af5ad4c872c (patch)
tree158067acc6c957b2f973802c089878812134b2b0 /libs/ardour/globals.cc
parentaf5815e79bcd2a17edbdf5d45f1c7df02af546d8 (diff)
a) start at creating ControlProtocol objects
b) basic support for Frontier Design Tranzport c) probably broke some aspect of existing generic MIDI feedback git-svn-id: svn://localhost/trunk/ardour2@441 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index 5cfe83e944..7210fcf9f5 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -336,7 +336,7 @@ find_file (string name, string dir, string subdir = "")
string path;
char* envvar = getenv("ARDOUR_PATH");
- /* stop A: any directory in ARDOUR_PATH */
+ /* 1st attempt: any directory in ARDOUR_PATH */
if (envvar != 0) {
@@ -354,7 +354,7 @@ find_file (string name, string dir, string subdir = "")
}
}
- /* stop B: ~/.ardour/ */
+ /* 2nd attempt: ~/.ardour/ */
path = get_user_ardour_path();
@@ -367,7 +367,7 @@ find_file (string name, string dir, string subdir = "")
return path;
}
- /* C: dir/... */
+ /* 3rd attempt: dir/... */
path = dir;
path += "/ardour2/";