Move a few declarations to first use.
[ardour.git] / libs / ardour / control_protocol_search_path.cc
index c7c9b635a38fad610e58617ac6e1eb1ee5219fc0..345989277bef662f571b17585dca960fe5d15efb 100644 (file)
@@ -34,18 +34,18 @@ namespace ARDOUR {
 SearchPath
 control_protocol_search_path ()
 {
-       bool surfaces_path_defined = false;
-       SearchPath spath_env (Glib::getenv(surfaces_env_variable_name, surfaces_path_defined));
-
-       if (surfaces_path_defined) {
-               return spath_env;
-       }
-
        SearchPath spath (user_config_directory ());
 
        spath += ardour_module_directory ();
        spath.add_subdirectory_to_paths (surfaces_dir_name);
 
+       bool surfaces_path_defined = false;
+       SearchPath spath_env (Glib::getenv(surfaces_env_variable_name, surfaces_path_defined));
+       
+       if (surfaces_path_defined) {
+               spath += spath_env;
+       }
+
        return spath;
 }