summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-04-04 05:58:56 +0200
committerLioncash <mathew1800@gmail.com>2019-04-04 05:58:58 +0200
commit3f8c9b25d8bf0423bc0e390a2302cb7893cac11e (patch)
tree0dc545e16bc62385feaa9dce73a7274f6b330be7
parentyuzu/main: Make open_target a QString (diff)
downloadyuzu-3f8c9b25d8bf0423bc0e390a2302cb7893cac11e.tar
yuzu-3f8c9b25d8bf0423bc0e390a2302cb7893cac11e.tar.gz
yuzu-3f8c9b25d8bf0423bc0e390a2302cb7893cac11e.tar.bz2
yuzu-3f8c9b25d8bf0423bc0e390a2302cb7893cac11e.tar.lz
yuzu-3f8c9b25d8bf0423bc0e390a2302cb7893cac11e.tar.xz
yuzu-3f8c9b25d8bf0423bc0e390a2302cb7893cac11e.tar.zst
yuzu-3f8c9b25d8bf0423bc0e390a2302cb7893cac11e.zip
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 6f1d10e17..cff5d9df8 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -1094,7 +1094,7 @@ void GMainWindow::OnTransferableShaderCacheOpenFile(u64 program_id) {
const QString transferable_shader_cache_file_path =
tranferable_shader_cache_folder_path + DIR_SEP +
- QString::fromStdString(fmt::format("{:016X}", program_id)) + ".bin";
+ QString::fromStdString(fmt::format("{:016X}.bin", program_id));
if (!QFile::exists(transferable_shader_cache_file_path)) {
QMessageBox::warning(this, tr("Error Opening %1 File").arg(open_target),