From 5d58db288bce8c2c99b51a0c7d15f95a0b1bba36 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sun, 17 Oct 2021 02:42:06 +0200 Subject: [PATCH] early-access version 2142 --- README.md | 2 +- src/yuzu/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 77a350133..82a0e4928 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2141. +This is the source code for early-access 2142. ## Legal Notice diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index f076c4735..dfc014d34 100755 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1732,7 +1732,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)};