diff options
| author | 2021-02-02 11:07:42 -0500 | |
|---|---|---|
| committer | 2021-02-02 11:07:42 -0500 | |
| commit | 82d232db466a7df1bd8bd8a4035907f130b3e6cc (patch) | |
| tree | e0c0332580d809872c293c4d6192927caf66a9ee /src/core/settings.cpp | |
| parent | Merge pull request #5861 from german77/HandheldFix (diff) | |
| parent | settings: Log the cache, config, and mod load directories (diff) | |
| download | yuzu-82d232db466a7df1bd8bd8a4035907f130b3e6cc.tar.gz yuzu-82d232db466a7df1bd8bd8a4035907f130b3e6cc.tar.xz yuzu-82d232db466a7df1bd8bd8a4035907f130b3e6cc.zip | |
Merge pull request #5866 from Morph1984/log-all-paths
settings: Log the cache, config and mod load directories
Diffstat (limited to 'src/core/settings.cpp')
| -rw-r--r-- | src/core/settings.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 39306509a..2ae5196e0 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp | |||
| @@ -70,6 +70,9 @@ void LogSettings() { | |||
| 70 | log_setting("Audio_EnableAudioStretching", values.enable_audio_stretching.GetValue()); | 70 | log_setting("Audio_EnableAudioStretching", values.enable_audio_stretching.GetValue()); |
| 71 | log_setting("Audio_OutputDevice", values.audio_device_id); | 71 | log_setting("Audio_OutputDevice", values.audio_device_id); |
| 72 | log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd); | 72 | log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd); |
| 73 | log_setting("DataStorage_CacheDir", Common::FS::GetUserPath(Common::FS::UserPath::CacheDir)); | ||
| 74 | log_setting("DataStorage_ConfigDir", Common::FS::GetUserPath(Common::FS::UserPath::ConfigDir)); | ||
| 75 | log_setting("DataStorage_LoadDir", Common::FS::GetUserPath(Common::FS::UserPath::LoadDir)); | ||
| 73 | log_setting("DataStorage_NandDir", Common::FS::GetUserPath(Common::FS::UserPath::NANDDir)); | 76 | log_setting("DataStorage_NandDir", Common::FS::GetUserPath(Common::FS::UserPath::NANDDir)); |
| 74 | log_setting("DataStorage_SdmcDir", Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir)); | 77 | log_setting("DataStorage_SdmcDir", Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir)); |
| 75 | log_setting("Debugging_ProgramArgs", values.program_args); | 78 | log_setting("Debugging_ProgramArgs", values.program_args); |