diff options
author | Ameer J <52414509+ameerj@users.noreply.github.com> | 2023-12-22 04:00:49 +0100 |
---|---|---|
committer | Ameer J <52414509+ameerj@users.noreply.github.com> | 2023-12-22 04:00:49 +0100 |
commit | 139b4cc9eaffed4a7441ee8cde671f8e488b26bb (patch) | |
tree | 479f14930acb92b8c73e49b537db86f203f5879b | |
parent | spirv_emit_context: Fix BaseInstance for OGL spirv (diff) | |
download | yuzu-139b4cc9eaffed4a7441ee8cde671f8e488b26bb.tar yuzu-139b4cc9eaffed4a7441ee8cde671f8e488b26bb.tar.gz yuzu-139b4cc9eaffed4a7441ee8cde671f8e488b26bb.tar.bz2 yuzu-139b4cc9eaffed4a7441ee8cde671f8e488b26bb.tar.lz yuzu-139b4cc9eaffed4a7441ee8cde671f8e488b26bb.tar.xz yuzu-139b4cc9eaffed4a7441ee8cde671f8e488b26bb.tar.zst yuzu-139b4cc9eaffed4a7441ee8cde671f8e488b26bb.zip |
-rw-r--r-- | src/yuzu/configuration/shared_translation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/shared_translation.cpp b/src/yuzu/configuration/shared_translation.cpp index 7e908924c..922eb1b1a 100644 --- a/src/yuzu/configuration/shared_translation.cpp +++ b/src/yuzu/configuration/shared_translation.cpp @@ -228,7 +228,7 @@ std::unique_ptr<ComboboxTranslationMap> ComboboxEnumeration(QWidget* parent) { { PAIR(ShaderBackend, Glsl, tr("GLSL")), PAIR(ShaderBackend, Glasm, tr("GLASM (Assembly Shaders, NVIDIA Only)")), - PAIR(ShaderBackend, SpirV, tr("SPIR-V (Experimental, Mesa Only)")), + PAIR(ShaderBackend, SpirV, tr("SPIR-V (Experimental, AMD/Mesa Only)")), }}); translations->insert({Settings::EnumMetadata<Settings::GpuAccuracy>::Index(), { |