Browse Source
Merge pull request #7195 from MightyCreak/fix-warning-typo
main: fix typo in warning message
pull/15/merge
Mai M
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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)}; |
|
|
const auto shader_cache_folder_path{shader_cache_dir / fmt::format("{:016x}", program_id)}; |
|
|
if (!Common::FS::CreateDirs(shader_cache_folder_path)) { |
|
|
if (!Common::FS::CreateDirs(shader_cache_folder_path)) { |
|
|
QMessageBox::warning(this, tr("Error Opening Transferable Shader Cache"), |
|
|
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; |
|
|
return; |
|
|
} |
|
|
} |
|
|
const auto shader_path_string{Common::FS::PathToUTF8String(shader_cache_folder_path)}; |
|
|
const auto shader_path_string{Common::FS::PathToUTF8String(shader_cache_folder_path)}; |
|
|
|