Browse Source

fix user_config_dir on macos

~/Preferences is not a thing
better_mac_paths
John Robinson 3 years ago
parent
commit
4f55a74d14
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/dds/util/paths.macos.cpp

+ 1
- 1
src/dds/util/paths.macos.cpp View File

@@ -21,6 +21,6 @@ fs::path dds::user_home_dir() {

fs::path dds::user_data_dir() { return user_home_dir() / "Library/Application Support"; }
fs::path dds::user_cache_dir() { return user_home_dir() / "Library/Caches"; }
fs::path dds::user_config_dir() { return user_home_dir() / "Preferences"; }
fs::path dds::user_config_dir() { return user_home_dir() / "Library/Preferences"; }

#endif

Loading…
Cancel
Save