summaryrefslogtreecommitdiff
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-22 19:42:29 -0700
committerGravatar bunnei2014-04-22 19:42:29 -0700
commit7a136b8a84f9b21e120efe734f86725c46b8531b (patch)
tree23102d673fb6ab5a84e033d4360654d459fc41eb /src/common/file_util.cpp
parentremoved duplicate rotl/rotr functions (diff)
downloadyuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar.gz
yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar.xz
yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.zip
fixes to build on linux
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r--src/common/file_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index d36304d91..47ad964db 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -672,7 +672,7 @@ const std::string& GetUserPath(const unsigned int DirIDX, const std::string &new
672 else 672 else
673 paths[D_USER_IDX] = std::string(getenv("HOME") ? 673 paths[D_USER_IDX] = std::string(getenv("HOME") ?
674 getenv("HOME") : getenv("PWD") ? 674 getenv("HOME") : getenv("PWD") ?
675 getenv("PWD") : "") + DIR_SEP DOLPHIN_DATA_DIR DIR_SEP; 675 getenv("PWD") : "") + DIR_SEP EMU_DATA_DIR DIR_SEP;
676#endif 676#endif
677 677
678 paths[D_CONFIG_IDX] = paths[D_USER_IDX] + CONFIG_DIR DIR_SEP; 678 paths[D_CONFIG_IDX] = paths[D_USER_IDX] + CONFIG_DIR DIR_SEP;