summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-08-03 13:00:14 +0200
committerGitHub <noreply@github.com>2020-08-03 13:00:14 +0200
commit6c7292de33702aababf60acbc58128bd060f81ab (patch)
tree668e2d0365852682609764f5ebff600848ef7246 /src/common
parentMerge pull request #4439 from lioncash/cpu (diff)
parentconfig: Make the save-as identifier more consistent (diff)
downloadyuzu-6c7292de33702aababf60acbc58128bd060f81ab.tar
yuzu-6c7292de33702aababf60acbc58128bd060f81ab.tar.gz
yuzu-6c7292de33702aababf60acbc58128bd060f81ab.tar.bz2
yuzu-6c7292de33702aababf60acbc58128bd060f81ab.tar.lz
yuzu-6c7292de33702aababf60acbc58128bd060f81ab.tar.xz
yuzu-6c7292de33702aababf60acbc58128bd060f81ab.tar.zst
yuzu-6c7292de33702aababf60acbc58128bd060f81ab.zip
Diffstat (limited to '')
-rw-r--r--src/common/common_paths.h1
-rw-r--r--src/common/file_util.cpp1
-rw-r--r--src/common/file_util.h1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/common/common_paths.h b/src/common/common_paths.h
index 076752d3b..3c593d5f6 100644
--- a/src/common/common_paths.h
+++ b/src/common/common_paths.h
@@ -35,6 +35,7 @@
#define KEYS_DIR "keys"
#define LOAD_DIR "load"
#define DUMP_DIR "dump"
+#define SCREENSHOTS_DIR "screenshots"
#define SHADER_DIR "shader"
#define LOG_DIR "log"
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 45b750e1e..4ede9f72c 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -695,6 +695,7 @@ const std::string& GetUserPath(UserPath path, const std::string& new_path) {
paths.emplace(UserPath::NANDDir, user_path + NAND_DIR DIR_SEP);
paths.emplace(UserPath::LoadDir, user_path + LOAD_DIR DIR_SEP);
paths.emplace(UserPath::DumpDir, user_path + DUMP_DIR DIR_SEP);
+ paths.emplace(UserPath::ScreenshotsDir, user_path + SCREENSHOTS_DIR DIR_SEP);
paths.emplace(UserPath::ShaderDir, user_path + SHADER_DIR DIR_SEP);
paths.emplace(UserPath::SysDataDir, user_path + SYSDATA_DIR DIR_SEP);
paths.emplace(UserPath::KeysDir, user_path + KEYS_DIR DIR_SEP);
diff --git a/src/common/file_util.h b/src/common/file_util.h
index f7a0c33fa..187b93161 100644
--- a/src/common/file_util.h
+++ b/src/common/file_util.h
@@ -32,6 +32,7 @@ enum class UserPath {
SDMCDir,
LoadDir,
DumpDir,
+ ScreenshotsDir,
ShaderDir,
SysDataDir,
UserDir,