diff options
Diffstat (limited to 'src/core/settings.cpp')
| -rw-r--r-- | src/core/settings.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 0dd1632ac..7de3fd1e5 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "common/file_util.h" | ||
| 5 | #include "core/core.h" | 6 | #include "core/core.h" |
| 6 | #include "core/gdbstub/gdbstub.h" | 7 | #include "core/gdbstub/gdbstub.h" |
| 7 | #include "core/hle/service/hid/hid.h" | 8 | #include "core/hle/service/hid/hid.h" |
| @@ -97,8 +98,8 @@ void LogSettings() { | |||
| 97 | LogSetting("Audio_EnableAudioStretching", Settings::values.enable_audio_stretching); | 98 | LogSetting("Audio_EnableAudioStretching", Settings::values.enable_audio_stretching); |
| 98 | LogSetting("Audio_OutputDevice", Settings::values.audio_device_id); | 99 | LogSetting("Audio_OutputDevice", Settings::values.audio_device_id); |
| 99 | LogSetting("DataStorage_UseVirtualSd", Settings::values.use_virtual_sd); | 100 | LogSetting("DataStorage_UseVirtualSd", Settings::values.use_virtual_sd); |
| 100 | LogSetting("DataStorage_NandDir", Settings::values.nand_dir); | 101 | LogSetting("DataStorage_NandDir", FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)); |
| 101 | LogSetting("DataStorage_SdmcDir", Settings::values.sdmc_dir); | 102 | LogSetting("DataStorage_SdmcDir", FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)); |
| 102 | LogSetting("Debugging_UseGdbstub", Settings::values.use_gdbstub); | 103 | LogSetting("Debugging_UseGdbstub", Settings::values.use_gdbstub); |
| 103 | LogSetting("Debugging_GdbstubPort", Settings::values.gdbstub_port); | 104 | LogSetting("Debugging_GdbstubPort", Settings::values.gdbstub_port); |
| 104 | LogSetting("Debugging_ProgramArgs", Settings::values.program_args); | 105 | LogSetting("Debugging_ProgramArgs", Settings::values.program_args); |