configure_graphics: Make SPIRV backend string translatable

The parenthetical needs to be translatable, like with GLASM
This commit is contained in:
Lioncash 2022-12-06 00:13:05 -05:00
parent 8072951e04
commit 1ad43e68da

View file

@ -31,7 +31,7 @@ ConfigureGraphics::ConfigureGraphics(const Core::System& system_, QWidget* paren
ui->backend->addItem(QStringLiteral("GLSL")); ui->backend->addItem(QStringLiteral("GLSL"));
ui->backend->addItem(tr("GLASM (Assembly Shaders, NVIDIA Only)")); ui->backend->addItem(tr("GLASM (Assembly Shaders, NVIDIA Only)"));
ui->backend->addItem(QStringLiteral("SPIR-V (Experimental, Mesa Only)")); ui->backend->addItem(tr("SPIR-V (Experimental, Mesa Only)"));
SetupPerGameUI(); SetupPerGameUI();