Skip to content

Commit 7dba3c3

Browse files
authored
Allowing user-set internal resolution in menu (#682)
1 parent a161aa7 commit 7dba3c3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/port/ui/PortMenu.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ void PortMenu::AddSettings() {
227227
AddSidebarEntry("Settings", "Graphics", 3);
228228
AddWidget(path, "Renderer API (Needs reload)", WIDGET_VIDEO_BACKEND);
229229

230-
#ifndef __APPLE__
231230
AddWidget(path, "Internal Resolution: %.0f%%", WIDGET_CVAR_SLIDER_FLOAT)
232231
.CVar(CVAR_INTERNAL_RESOLUTION)
233232
.Callback([](WidgetInfo& info) {
@@ -252,7 +251,7 @@ void PortMenu::AddSettings() {
252251
.Format("")
253252
.Min(0.5f)
254253
.Max(4.0f));
255-
#endif
254+
256255
#ifndef __WIIU__
257256
AddWidget(path, "Anti-aliasing (MSAA): %d", WIDGET_CVAR_SLIDER_INT)
258257
.CVar(CVAR_MSAA_VALUE)

0 commit comments

Comments
 (0)