Browse Source
Update src/yuzu/main.cpp
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
pull/15/merge
Fernando S
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/yuzu/main.cpp
|
|
|
@ -2907,12 +2907,12 @@ void GMainWindow::UpdateStatusBar() { |
|
|
|
void GMainWindow::UpdateGPUAccuracyButton() { |
|
|
|
switch (Settings::values.gpu_accuracy.GetValue()) { |
|
|
|
case Settings::GPUAccuracy::Normal: { |
|
|
|
gpu_accuracy_button->setText(tr("GPU NORMAL ")); |
|
|
|
gpu_accuracy_button->setText(tr("GPU NORMAL")); |
|
|
|
gpu_accuracy_button->setChecked(false); |
|
|
|
break; |
|
|
|
} |
|
|
|
case Settings::GPUAccuracy::High: { |
|
|
|
gpu_accuracy_button->setText(tr("GPU HIGH ")); |
|
|
|
gpu_accuracy_button->setText(tr("GPU HIGH")); |
|
|
|
gpu_accuracy_button->setChecked(true); |
|
|
|
break; |
|
|
|
} |
|
|
|
|