summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Mai M2021-10-16 19:50:41 -0400
committerGravatar GitHub2021-10-16 19:50:41 -0400
commit28d343d28873d0946c792ec3a2fd7fd3e874ab06 (patch)
tree5ca4815ebe5924af090c60066a9ba1f4326c30c4
parentMerge pull request #7192 from zhaobot/tx-update-20211016064801 (diff)
parentmain: fix typo in warning message (diff)
downloadyuzu-28d343d28873d0946c792ec3a2fd7fd3e874ab06.tar.gz
yuzu-28d343d28873d0946c792ec3a2fd7fd3e874ab06.tar.xz
yuzu-28d343d28873d0946c792ec3a2fd7fd3e874ab06.zip
Merge pull request #7195 from MightyCreak/fix-warning-typo
main: fix typo in warning message
-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 fdcd423d7..2af582fe5 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -1666,7 +1666,7 @@ void GMainWindow::OnTransferableShaderCacheOpenFile(u64 program_id) {
1666 const auto shader_cache_folder_path{shader_cache_dir / fmt::format("{:016x}", program_id)}; 1666 const auto shader_cache_folder_path{shader_cache_dir / fmt::format("{:016x}", program_id)};
1667 if (!Common::FS::CreateDirs(shader_cache_folder_path)) { 1667 if (!Common::FS::CreateDirs(shader_cache_folder_path)) {
1668 QMessageBox::warning(this, tr("Error Opening Transferable Shader Cache"), 1668 QMessageBox::warning(this, tr("Error Opening Transferable Shader Cache"),
1669 tr("Filed to create the shader cache directory for this title.")); 1669 tr("Failed to create the shader cache directory for this title."));
1670 return; 1670 return;
1671 } 1671 }
1672 const auto shader_path_string{Common::FS::PathToUTF8String(shader_cache_folder_path)}; 1672 const auto shader_path_string{Common::FS::PathToUTF8String(shader_cache_folder_path)};