diff options
author | Mai M <mathew1800@gmail.com> | 2021-10-16 19:50:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 19:50:41 -0400 |
commit | 28d343d28873d0946c792ec3a2fd7fd3e874ab06 (patch) | |
tree | 5ca4815ebe5924af090c60066a9ba1f4326c30c4 /src/yuzu/main.cpp | |
parent | 622bc478e6aef42787f74354ba8a38e53c04d3ca (diff) | |
parent | 992f325662f488596d3341faed5b94f517fb9d51 (diff) |
Merge pull request #7195 from MightyCreak/fix-warning-typo
main: fix typo in warning message
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
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) { 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)}; |