From c404ef985682a9f3e2c70aa84bf953ab6adecf71 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 22 Dec 2014 23:04:23 +0100 Subject: [PATCH] don't append .config to %LOCALAPPDATA%\\ ::user_config_directory() could use some general cleanup an x-platform consolidation, but today is not the day. --- libs/ardour/filesystem_paths.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/filesystem_paths.cc b/libs/ardour/filesystem_paths.cc index ec5edb8aab..00ec2790f2 100644 --- a/libs/ardour/filesystem_paths.cc +++ b/libs/ardour/filesystem_paths.cc @@ -70,8 +70,10 @@ user_config_directory () exit (1); } +#ifndef PLATFORM_WINDOWS p = home_dir; p = Glib::build_filename (p, ".config"); +#endif } #endif