aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorRomain Failliot <romain.failliot@foolstep.com>2021-10-16 12:53:06 -0400
committerRomain Failliot <romain.failliot@foolstep.com>2021-10-16 12:53:06 -0400
commit992f325662f488596d3341faed5b94f517fb9d51 (patch)
tree14fb71080a6e76899739e98bc3b4243e49654a96 /src/yuzu/main.cpp
parent851fe91b6924d04455abc199124f584d85992552 (diff)
main: fix typo in warning message
Diffstat (limited to 'src/yuzu/main.cpp')
-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 9f80a245c5..2facedf989 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -1663,7 +1663,7 @@ void GMainWindow::OnTransferableShaderCacheOpenFile(u64 program_id) {
const auto shader_cache_folder_path{shader_cache_dir / fmt::format("{:016x}", program_id)};
if (!Common::FS::CreateDirs(shader_cache_folder_path)) {
QMessageBox::warning(this, tr("Error Opening Transferable Shader Cache"),
- tr("Filed to create the shader cache directory for this title."));
+ tr("Failed to create the shader cache directory for this title."));
return;
}
const auto shader_path_string{Common::FS::PathToUTF8String(shader_cache_folder_path)};