From ad1d545890eeca331af97eddb75d321d50251811 Mon Sep 17 00:00:00 2001 From: Reg Tiangha Date: Tue, 21 May 2024 22:21:26 -0600 Subject: [PATCH] fix build errors --- src/core/frontend/framebuffer_layout.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/core/frontend/framebuffer_layout.cpp b/src/core/frontend/framebuffer_layout.cpp index 19f1a27ac..11d2249ac 100644 --- a/src/core/frontend/framebuffer_layout.cpp +++ b/src/core/frontend/framebuffer_layout.cpp @@ -482,14 +482,6 @@ FramebufferLayout FrameLayoutFromResolutionScale(u32 res_scale, bool is_secondar large_screen_proportion, VerticalAlignment::Top); } - case Settings::LayoutOption::CustomLayout: - layout = CustomFrameLayout(std::max(Settings::values.custom_top_right.GetValue(), - Settings::values.custom_bottom_right.GetValue()), - std::max(Settings::values.custom_top_bottom.GetValue(), - Settings::values.custom_bottom_bottom.GetValue()), - Settings::values.swap_screen.GetValue()); - break; - case Settings::LayoutOption::Default: default: width = Core::kScreenTopWidth * res_scale;