Browse Source

configure_graphics: reword GLASM option

Change wording to explain that GLASM is actually short for Assembly Shaders
Vamsi Krishna 5 years ago
parent
commit
c05bbf375d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/yuzu/configuration/configure_graphics.cpp

+ 1 - 1
src/yuzu/configuration/configure_graphics.cpp

@@ -31,7 +31,7 @@ ConfigureGraphics::ConfigureGraphics(QWidget* parent)
     }
 
     ui->backend->addItem(QStringLiteral("GLSL"));
-    ui->backend->addItem(tr("GLASM (NVIDIA Only)"));
+    ui->backend->addItem(tr("GLASM (Assembly Shaders, NVIDIA Only)"));
     ui->backend->addItem(QStringLiteral("SPIR-V (Experimental, Mesa Only)"));
 
     SetupPerGameUI();