diff options
author | bunnei <bunneidev@gmail.com> | 2022-10-12 12:54:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 12:54:23 -0700 |
commit | 3da4280e816bd771d6b2649e70dc6d7c99002948 (patch) | |
tree | fd82415169610de21e05d79a3631d907c5640835 /src/core | |
parent | 77177a7e33cc42e883f8599aa1c8e3dbdd4f3767 (diff) | |
parent | eb74ef474b6ff98db2b39b5fee43d51f404dbca4 (diff) |
Merge pull request #9047 from german77/steam-aspect
yuzu: Add 16:10 aspect ratio
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/frontend/framebuffer_layout.cpp | 2 | ||||
-rw-r--r-- | src/core/frontend/framebuffer_layout.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/core/frontend/framebuffer_layout.cpp b/src/core/frontend/framebuffer_layout.cpp index 90dd68ff1..b4081fc39 100644 --- a/src/core/frontend/framebuffer_layout.cpp +++ b/src/core/frontend/framebuffer_layout.cpp @@ -67,6 +67,8 @@ float EmulationAspectRatio(AspectRatio aspect, float window_aspect_ratio) { return 3.0f / 4.0f; case AspectRatio::R21_9: return 9.0f / 21.0f; + case AspectRatio::R16_10: + return 10.0f / 16.0f; case AspectRatio::StretchToWindow: return window_aspect_ratio; default: diff --git a/src/core/frontend/framebuffer_layout.h b/src/core/frontend/framebuffer_layout.h index 1561d994e..94683b30f 100644 --- a/src/core/frontend/framebuffer_layout.h +++ b/src/core/frontend/framebuffer_layout.h @@ -27,6 +27,7 @@ enum class AspectRatio { Default, R4_3, R21_9, + R16_10, StretchToWindow, }; |