13
0

Nick, I am your god.

(fix loading old sessions)


git-svn-id: svn://localhost/ardour2/trunk@924 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sampo Savolainen 2006-09-23 10:06:57 +00:00
parent 41bc62b35b
commit 75fd93406d

View File

@ -2249,17 +2249,21 @@ Session::sound_dir (bool with_path) const
/* support old session structure */
struct stat statbuf;
string old;
string old_nopath;
string old_withpath;
if (with_path) {
old = _path;
}
old_nopath += old_sound_dir_name;
old_nopath += '/';
old_withpath = _path;
old_withpath += old_sound_dir_name;
old_withpath += '/';
old += sound_dir_name;
old += '/';
if (stat (old.c_str(), &statbuf) == 0) {
return old;
if (stat (old_withpath.c_str(), &statbuf) == 0) {
if (with_path)
return old_withpath;
return old_nopath;
}
string res;