This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
dds
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix appdata_dir for Windows
default_compile_flags
vector-of-bool
4 years ago
parent
6bd48d7395
commit
e1308c5709
1 changed files
with
1 additions
and
1 deletions
Unified View
Show Diff Stats
+1
-1
src/dds/util/paths.win.cpp
+ 1
- 1
src/dds/util/paths.win.cpp
View File
}
}
fs::path appdata_dir() {
fs::path appdata_dir() {
auto env = std::getenv("
Local
AppData");
auto env = std::getenv("AppData");
assert(env);
assert(env);
return fs::absolute(fs::path(env));
return fs::absolute(fs::path(env));
Write
Preview
Loading…
Cancel
Save