summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <lat9nq@gmail.com>2022-05-16 00:09:19 +0200
committerlat9nq <lat9nq@gmail.com>2022-05-16 00:09:19 +0200
commit3ca3254b9f75545d1678f3e9ef116b554f31add8 (patch)
treecf455a271bd020450502e951af657d8612775d4c
parentqt_software_keyboard: Use Common::U16StringFromBuffer (diff)
downloadyuzu-3ca3254b9f75545d1678f3e9ef116b554f31add8.tar
yuzu-3ca3254b9f75545d1678f3e9ef116b554f31add8.tar.gz
yuzu-3ca3254b9f75545d1678f3e9ef116b554f31add8.tar.bz2
yuzu-3ca3254b9f75545d1678f3e9ef116b554f31add8.tar.lz
yuzu-3ca3254b9f75545d1678f3e9ef116b554f31add8.tar.xz
yuzu-3ca3254b9f75545d1678f3e9ef116b554f31add8.tar.zst
yuzu-3ca3254b9f75545d1678f3e9ef116b554f31add8.zip
-rw-r--r--src/yuzu/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index f607f464a..f4a9a7171 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -1401,7 +1401,8 @@ void GMainWindow::BootGame(const QString& filename, u64 program_id, std::size_t
if (loader != nullptr && loader->ReadProgramId(title_id) == Loader::ResultStatus::Success &&
type == StartGameType::Normal) {
// Load per game settings
- const auto file_path = std::filesystem::path{filename.toStdU16String()};
+ const auto file_path =
+ std::filesystem::path{Common::U16StringFromBuffer(filename.utf16(), filename.size())};
const auto config_file_name = title_id == 0
? Common::FS::PathToUTF8String(file_path.filename())
: fmt::format("{:016X}", title_id);
@@ -1482,7 +1483,8 @@ void GMainWindow::BootGame(const QString& filename, u64 program_id, std::size_t
}
if (res != Loader::ResultStatus::Success || title_name.empty()) {
title_name = Common::FS::PathToUTF8String(
- std::filesystem::path{filename.toStdU16String()}.filename());
+ std::filesystem::path{Common::U16StringFromBuffer(filename.utf16(), filename.size())}
+ .filename());
}
const bool is_64bit = system->Kernel().CurrentProcess()->Is64BitProcess();
const auto instruction_set_suffix = is_64bit ? tr("(64-bit)") : tr("(32-bit)");