Skip to content

Commit

Permalink
Fix "MSAA" and "SSAA" texts being swapped in enhancements overlay
Browse files Browse the repository at this point in the history
Previously, when you selected MSAA in the advanced options, you
got MSAA but the enhancements display showed "SSAA".
The opposite happened when you selected SSAA.
  • Loading branch information
Calinou committed Sep 22, 2022
1 parent d26fef3 commit dcd11d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend-common/imgui_overlays.cpp
Expand Up @@ -270,7 +270,7 @@ void ImGuiManager::DrawEnhancementsOverlay()
if (g_settings.gpu_multisamples != 1)
{
text.AppendFormattedString(" %ux%s", g_settings.gpu_multisamples,
g_settings.gpu_per_sample_shading ? "MSAA" : "SSAA");
g_settings.gpu_per_sample_shading ? "SSAA" : "MSAA");
}
if (g_settings.gpu_true_color)
text.AppendString(" TrueCol");
Expand Down

0 comments on commit dcd11d8

Please sign in to comment.