diff options
| author | 2020-05-15 16:22:27 -0400 | |
|---|---|---|
| committer | 2020-05-15 22:22:27 +0200 | |
| commit | b73f678ee82a6f3fae36ed39dfc4cfc27c64a871 (patch) | |
| tree | c87d2dc03d7ef150c49f694af33b1ad1c6f1ea7f /src/core/frontend/framebuffer_layout.h | |
| parent | Merge pull request #3927 from jroweboy/fix-bug (diff) | |
| download | yuzu-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.h | 5 |
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 | ||
| 9 | namespace Layout { | 9 | namespace Layout { |
| 10 | 10 | ||
| 11 | namespace MinimumSize { | ||
| 12 | constexpr u32 Width = 640; | ||
| 13 | constexpr u32 Height = 360; | ||
| 14 | } // namespace MinimumSize | ||
| 15 | |||
| 11 | namespace ScreenUndocked { | 16 | namespace ScreenUndocked { |
| 12 | constexpr u32 Width = 1280; | 17 | constexpr u32 Width = 1280; |
| 13 | constexpr u32 Height = 720; | 18 | constexpr u32 Height = 720; |