diff options
| author | EJStaats <ejstaats@hotmail.com> | 2026-03-29 15:34:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-29 13:34:19 -0600 |
| commit | 7dba3c3c810015ca75af1891e919bd3724208836 (patch) | |
| tree | 48f4e855968deb012c632f0390d4fea7b08f9c90 | |
| parent | a161aa7c3f1a8dcdf77a3565444911e0087d25c2 (diff) | |
Allowing user-set internal resolution in menu (#682)
| -rw-r--r-- | src/port/ui/PortMenu.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/port/ui/PortMenu.cpp b/src/port/ui/PortMenu.cpp index 09a115e32..6ceffb5eb 100644 --- a/src/port/ui/PortMenu.cpp +++ b/src/port/ui/PortMenu.cpp @@ -227,7 +227,6 @@ void PortMenu::AddSettings() { AddSidebarEntry("Settings", "Graphics", 3); AddWidget(path, "Renderer API (Needs reload)", WIDGET_VIDEO_BACKEND); -#ifndef __APPLE__ AddWidget(path, "Internal Resolution: %.0f%%", WIDGET_CVAR_SLIDER_FLOAT) .CVar(CVAR_INTERNAL_RESOLUTION) .Callback([](WidgetInfo& info) { @@ -252,7 +251,7 @@ void PortMenu::AddSettings() { .Format("") .Min(0.5f) .Max(4.0f)); -#endif + #ifndef __WIIU__ AddWidget(path, "Anti-aliasing (MSAA): %d", WIDGET_CVAR_SLIDER_INT) .CVar(CVAR_MSAA_VALUE) |
