summarylogtreecommitdiffstats
path: root/xdg.diff
diff options
context:
space:
mode:
authorAnuskuss2022-09-10 21:05:47 +0200
committerAnuskuss2022-09-10 21:05:47 +0200
commit67956e6b69dc08d9c5041a32427ada56d2efcad2 (patch)
treeaf9ee5aebe8cace1f27d37922289a603e6292e67 /xdg.diff
parent6dca3e40eb28c522e8d46dc423523937aea1d888 (diff)
downloadaur-67956e6b69dc08d9c5041a32427ada56d2efcad2.tar.gz
Added DSUController support and updated to latest version
Diffstat (limited to 'xdg.diff')
-rw-r--r--xdg.diff4
1 files changed, 2 insertions, 2 deletions
diff --git a/xdg.diff b/xdg.diff
index 4208722b09fb..76b548d0ad1e 100644
--- a/xdg.diff
+++ b/xdg.diff
@@ -280,7 +280,7 @@
- const auto path = ActiveSettings::GetPath("sdcard/");
+ const auto path = ActiveSettings::GetDataPath("sdcard/");
fs::create_directories(path, ec);
- FSCDeviceHostFS_Mount("/vol/external01", path.generic_wstring().c_str() , FSC_PRIORITY_BASE);
+ FSCDeviceHostFS_Mount("/vol/external01", _pathToUtf8(path), FSC_PRIORITY_BASE);
@@ -140,7 +140,7 @@ namespace coreinit
return FS_RESULT::ERR_PLACEHOLDER;
@@ -289,7 +289,7 @@
- const auto path = ActiveSettings::GetPath("sdcard/");
+ const auto path = ActiveSettings::GetDataPath("sdcard/");
fs::create_directories(path, ec);
- if (!FSCDeviceHostFS_Mount(mountPathOut, path.generic_wstring().c_str(), FSC_PRIORITY_BASE))
+ if (!FSCDeviceHostFS_Mount(mountPathOut, _pathToUtf8(path), FSC_PRIORITY_BASE))
return FS_RESULT::ERR_PLACEHOLDER;
--- a/src/Cemu/Logging/CemuLogging.cpp
+++ b/src/Cemu/Logging/CemuLogging.cpp