summaryrefslogtreecommitdiff
path: root/src/core/frontend/framebuffer_layout.h
diff options
context:
space:
mode:
authorGravatar bunnei2020-03-12 12:00:39 -0400
committerGravatar GitHub2020-03-12 12:00:39 -0400
commitc21dc36cdaadccd507f0c24c562689138c75e6f2 (patch)
tree2f82b40c1310baa50e541c321497ad7d87a816cc /src/core/frontend/framebuffer_layout.h
parentMerge pull request #3494 from ReinUsesLisp/fix-cs-pipeline (diff)
parentframebuffer_layout.h: drop the use of enum for screen dimensions. (diff)
downloadyuzu-c21dc36cdaadccd507f0c24c562689138c75e6f2.tar.gz
yuzu-c21dc36cdaadccd507f0c24c562689138c75e6f2.tar.xz
yuzu-c21dc36cdaadccd507f0c24c562689138c75e6f2.zip
Merge pull request #3496 from vitor-k/remove-enum
framebuffer_layout.h: drop the use of enum for screen dimensions
Diffstat (limited to 'src/core/frontend/framebuffer_layout.h')
-rw-r--r--src/core/frontend/framebuffer_layout.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/frontend/framebuffer_layout.h b/src/core/frontend/framebuffer_layout.h
index e9d0a40d3..15ecfb13d 100644
--- a/src/core/frontend/framebuffer_layout.h
+++ b/src/core/frontend/framebuffer_layout.h
@@ -8,15 +8,15 @@
8 8
9namespace Layout { 9namespace Layout {
10 10
11enum ScreenUndocked : u32 { 11namespace ScreenUndocked {
12 Width = 1280, 12constexpr u32 Width = 1280;
13 Height = 720, 13constexpr u32 Height = 720;
14}; 14} // namespace ScreenUndocked
15 15
16enum ScreenDocked : u32 { 16namespace ScreenDocked {
17 WidthDocked = 1920, 17constexpr u32 Width = 1920;
18 HeightDocked = 1080, 18constexpr u32 Height = 1080;
19}; 19} // namespace ScreenDocked
20 20
21enum class AspectRatio { 21enum class AspectRatio {
22 Default, 22 Default,