diff options
| author | 2021-11-18 23:22:32 -0500 | |
|---|---|---|
| committer | 2021-11-18 23:22:32 -0500 | |
| commit | bc5ed1aa1b41b9960657dddee658c3ce344cb501 (patch) | |
| tree | 30abbba569e734da07986072aa428efe03919f5f | |
| parent | configure_graphics_ui: AMD's -> AMD (diff) | |
| download | yuzu-bc5ed1aa1b41b9960657dddee658c3ce344cb501.tar.gz yuzu-bc5ed1aa1b41b9960657dddee658c3ce344cb501.tar.xz yuzu-bc5ed1aa1b41b9960657dddee658c3ce344cb501.zip | |
main: Fix default AA name
By default, no AA is applied, not FXAA
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 689746028..44800e165 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -3117,15 +3117,15 @@ void GMainWindow::UpdateFilterText() { | |||
| 3117 | void GMainWindow::UpdateAAText() { | 3117 | void GMainWindow::UpdateAAText() { |
| 3118 | const auto aa_mode = Settings::values.anti_aliasing.GetValue(); | 3118 | const auto aa_mode = Settings::values.anti_aliasing.GetValue(); |
| 3119 | switch (aa_mode) { | 3119 | switch (aa_mode) { |
| 3120 | case Settings::AntiAliasing::Fxaa: | ||
| 3121 | aa_status_button->setText(tr("FXAA")); | ||
| 3122 | break; | ||
| 3123 | case Settings::AntiAliasing::None: | 3120 | case Settings::AntiAliasing::None: |
| 3124 | aa_status_button->setText(tr("NO AA")); | 3121 | aa_status_button->setText(tr("NO AA")); |
| 3125 | break; | 3122 | break; |
| 3126 | default: | 3123 | case Settings::AntiAliasing::Fxaa: |
| 3127 | aa_status_button->setText(tr("FXAA")); | 3124 | aa_status_button->setText(tr("FXAA")); |
| 3128 | break; | 3125 | break; |
| 3126 | default: | ||
| 3127 | aa_status_button->setText(tr("NO AA")); | ||
| 3128 | break; | ||
| 3129 | } | 3129 | } |
| 3130 | } | 3130 | } |
| 3131 | 3131 | ||