Browse Source

fix user_config_dir on macos

~/Preferences is not a thing
mac_paths
John Robinson 3 years ago
parent
commit
e88a519150
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



fs::path dds::user_data_dir() { return user_home_dir() / "Library/Application Support"; } 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_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 #endif

Loading…
Cancel
Save