diff options
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/fs/fs_paths.h | 1 | ||||
| -rw-r--r-- | src/common/fs/path_util.cpp | 1 | ||||
| -rw-r--r-- | src/common/fs/path_util.h | 1 | ||||
| -rw-r--r-- | src/common/settings.h | 1 |
4 files changed, 3 insertions, 1 deletions
diff --git a/src/common/fs/fs_paths.h b/src/common/fs/fs_paths.h index 61bac9eba..1a3f6ab45 100644 --- a/src/common/fs/fs_paths.h +++ b/src/common/fs/fs_paths.h | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #define AMIIBO_DIR "amiibo" | 13 | #define AMIIBO_DIR "amiibo" |
| 14 | #define CACHE_DIR "cache" | 14 | #define CACHE_DIR "cache" |
| 15 | #define CONFIG_DIR "config" | 15 | #define CONFIG_DIR "config" |
| 16 | #define CRASH_DUMPS_DIR "crash_dumps" | ||
| 16 | #define DUMP_DIR "dump" | 17 | #define DUMP_DIR "dump" |
| 17 | #define KEYS_DIR "keys" | 18 | #define KEYS_DIR "keys" |
| 18 | #define LOAD_DIR "load" | 19 | #define LOAD_DIR "load" |
diff --git a/src/common/fs/path_util.cpp b/src/common/fs/path_util.cpp index dce219fcf..fbac4d80c 100644 --- a/src/common/fs/path_util.cpp +++ b/src/common/fs/path_util.cpp | |||
| @@ -119,6 +119,7 @@ public: | |||
| 119 | GenerateYuzuPath(YuzuPath::AmiiboDir, yuzu_path / AMIIBO_DIR); | 119 | GenerateYuzuPath(YuzuPath::AmiiboDir, yuzu_path / AMIIBO_DIR); |
| 120 | GenerateYuzuPath(YuzuPath::CacheDir, yuzu_path_cache); | 120 | GenerateYuzuPath(YuzuPath::CacheDir, yuzu_path_cache); |
| 121 | GenerateYuzuPath(YuzuPath::ConfigDir, yuzu_path_config); | 121 | GenerateYuzuPath(YuzuPath::ConfigDir, yuzu_path_config); |
| 122 | GenerateYuzuPath(YuzuPath::CrashDumpsDir, yuzu_path / CRASH_DUMPS_DIR); | ||
| 122 | GenerateYuzuPath(YuzuPath::DumpDir, yuzu_path / DUMP_DIR); | 123 | GenerateYuzuPath(YuzuPath::DumpDir, yuzu_path / DUMP_DIR); |
| 123 | GenerateYuzuPath(YuzuPath::KeysDir, yuzu_path / KEYS_DIR); | 124 | GenerateYuzuPath(YuzuPath::KeysDir, yuzu_path / KEYS_DIR); |
| 124 | GenerateYuzuPath(YuzuPath::LoadDir, yuzu_path / LOAD_DIR); | 125 | GenerateYuzuPath(YuzuPath::LoadDir, yuzu_path / LOAD_DIR); |
diff --git a/src/common/fs/path_util.h b/src/common/fs/path_util.h index ba28964d0..036e475aa 100644 --- a/src/common/fs/path_util.h +++ b/src/common/fs/path_util.h | |||
| @@ -15,6 +15,7 @@ enum class YuzuPath { | |||
| 15 | AmiiboDir, // Where Amiibo backups are stored. | 15 | AmiiboDir, // Where Amiibo backups are stored. |
| 16 | CacheDir, // Where cached filesystem data is stored. | 16 | CacheDir, // Where cached filesystem data is stored. |
| 17 | ConfigDir, // Where config files are stored. | 17 | ConfigDir, // Where config files are stored. |
| 18 | CrashDumpsDir, // Where crash dumps are stored. | ||
| 18 | DumpDir, // Where dumped data is stored. | 19 | DumpDir, // Where dumped data is stored. |
| 19 | KeysDir, // Where key files are stored. | 20 | KeysDir, // Where key files are stored. |
| 20 | LoadDir, // Where cheat/mod files are stored. | 21 | LoadDir, // Where cheat/mod files are stored. |
diff --git a/src/common/settings.h b/src/common/settings.h index 98ab0ec2e..6a3fe47c9 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -500,7 +500,6 @@ struct Values { | |||
| 500 | linkage, false, "use_auto_stub", Category::Debugging, Specialization::Default, false}; | 500 | linkage, false, "use_auto_stub", Category::Debugging, Specialization::Default, false}; |
| 501 | Setting<bool> enable_all_controllers{linkage, false, "enable_all_controllers", | 501 | Setting<bool> enable_all_controllers{linkage, false, "enable_all_controllers", |
| 502 | Category::Debugging}; | 502 | Category::Debugging}; |
| 503 | Setting<bool> create_crash_dumps{linkage, false, "create_crash_dumps", Category::Debugging}; | ||
| 504 | Setting<bool> perform_vulkan_check{linkage, true, "perform_vulkan_check", Category::Debugging}; | 503 | Setting<bool> perform_vulkan_check{linkage, true, "perform_vulkan_check", Category::Debugging}; |
| 505 | 504 | ||
| 506 | // Miscellaneous | 505 | // Miscellaneous |