summaryrefslogtreecommitdiff
path: root/src/core/frontend/framebuffer_layout.h
diff options
context:
space:
mode:
authorGravatar Morph2020-05-15 16:22:27 -0400
committerGravatar GitHub2020-05-15 22:22:27 +0200
commitb73f678ee82a6f3fae36ed39dfc4cfc27c64a871 (patch)
treec87d2dc03d7ef150c49f694af33b1ad1c6f1ea7f /src/core/frontend/framebuffer_layout.h
parentMerge pull request #3927 from jroweboy/fix-bug (diff)
downloadyuzu-b73f678ee82a6f3fae36ed39dfc4cfc27c64a871.tar.gz
yuzu-b73f678ee82a6f3fae36ed39dfc4cfc27c64a871.tar.xz
yuzu-b73f678ee82a6f3fae36ed39dfc4cfc27c64a871.zip
frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413)
Diffstat (limited to 'src/core/frontend/framebuffer_layout.h')
-rw-r--r--src/core/frontend/framebuffer_layout.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/frontend/framebuffer_layout.h b/src/core/frontend/framebuffer_layout.h
index 15ecfb13d..91ecc30ab 100644
--- a/src/core/frontend/framebuffer_layout.h
+++ b/src/core/frontend/framebuffer_layout.h
@@ -8,6 +8,11 @@
8 8
9namespace Layout { 9namespace Layout {
10 10
11namespace MinimumSize {
12constexpr u32 Width = 640;
13constexpr u32 Height = 360;
14} // namespace MinimumSize
15
11namespace ScreenUndocked { 16namespace ScreenUndocked {
12constexpr u32 Width = 1280; 17constexpr u32 Width = 1280;
13constexpr u32 Height = 720; 18constexpr u32 Height = 720;