From 574455f2012b22208c8fb47e997ce8c2c797f331 Mon Sep 17 00:00:00 2001 From: crueter Date: Sun, 26 Oct 2025 12:48:41 -0700 Subject: [PATCH] fix mklink Signed-off-by: crueter --- src/common/ryujinx_compat.cpp | 2 -- src/yuzu/main.cpp | 4 ++-- src/yuzu/ryujinx_dialog.cpp | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/common/ryujinx_compat.cpp b/src/common/ryujinx_compat.cpp index f0b935e74d..610ba736a7 100644 --- a/src/common/ryujinx_compat.cpp +++ b/src/common/ryujinx_compat.cpp @@ -7,7 +7,6 @@ #include #include #include -#include namespace Common::FS { @@ -86,7 +85,6 @@ IMENReadResult ReadKvdb(const fs::path &path, std::vector &imens) kvdb.ignore(0x38); imens.emplace_back(IMEN{title_id, save_id}); - fmt::println("TitleID: {:16X} SaveID: {:016X} length: {}", title_id, save_id, imens.size()); } return IMENReadResult::Success; diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 08c18d5295..1d98515512 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2927,8 +2927,8 @@ void GMainWindow::OnLinkToRyujinx(const u64& program_id) if (user_id.empty()) return; std::string hex_program = fmt::format("{:016X}", program_id); - fs::path eden_dir = FrontendCommon::DataManager::GetDataDir(FrontendCommon::DataManager::DataDir::Saves) - / user_id / hex_program; + fs::path eden_dir = FrontendCommon::DataManager::GetDataDir(FrontendCommon::DataManager::DataDir::Saves, user_id) + / hex_program; RyujinxDialog dialog(eden_dir, ryu_dir, this); dialog.exec(); diff --git a/src/yuzu/ryujinx_dialog.cpp b/src/yuzu/ryujinx_dialog.cpp index b5fdd4afbc..42c84f2df1 100644 --- a/src/yuzu/ryujinx_dialog.cpp +++ b/src/yuzu/ryujinx_dialog.cpp @@ -15,8 +15,8 @@ RyujinxDialog::RyujinxDialog(std::filesystem::path eden_path, QWidget *parent) : QDialog(parent) , ui(new Ui::RyujinxDialog) - , m_eden(eden_path) - , m_ryu(ryu_path) + , m_eden(eden_path.make_preferred()) + , m_ryu(ryu_path.make_preferred()) { ui->setupUi(this);