From 82f602a10b352d812267ed9aa53d5cb9c479880d Mon Sep 17 00:00:00 2001 From: Michael Theall Date: Fri, 10 Apr 2020 15:26:11 -0500 Subject: [PATCH] Allow 1080p mode --- source/switch/imgui_nx.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/switch/imgui_nx.cpp b/source/switch/imgui_nx.cpp index b396e6c..0ea0f3b 100644 --- a/source/switch/imgui_nx.cpp +++ b/source/switch/imgui_nx.cpp @@ -1176,14 +1176,8 @@ void handleAppletHook (AppletHookType const hook_, void *const param_) case AppletOperationMode_Docked: // use docked mode resolution (1080p) -#if 0 s_width = 1920.0f; s_height = 1080.0f; -#else - /// \todo check if we'd rather use framebuffer scale - s_width = 1280.0f; - s_height = 720.0f; -#endif break; } break;