Allowing user-set internal resolution in menu (#682)

This commit is contained in:
EJStaats
2026-03-29 15:34:19 -04:00
committed by GitHub
parent a161aa7c3f
commit 7dba3c3c81
+1 -2
View File
@@ -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)