summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2022-10-10 20:32:09 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2022-10-10 20:32:33 +0200
commiteb74ef474b6ff98db2b39b5fee43d51f404dbca4 (patch)
tree5377443b1b6af48359edd6243470d6ce56f81ec9
parentMerge pull request #8915 from vonchenplus/opus_multi_stream (diff)
downloadyuzu-eb74ef474b6ff98db2b39b5fee43d51f404dbca4.tar
yuzu-eb74ef474b6ff98db2b39b5fee43d51f404dbca4.tar.gz
yuzu-eb74ef474b6ff98db2b39b5fee43d51f404dbca4.tar.bz2
yuzu-eb74ef474b6ff98db2b39b5fee43d51f404dbca4.tar.lz
yuzu-eb74ef474b6ff98db2b39b5fee43d51f404dbca4.tar.xz
yuzu-eb74ef474b6ff98db2b39b5fee43d51f404dbca4.tar.zst
yuzu-eb74ef474b6ff98db2b39b5fee43d51f404dbca4.zip
-rw-r--r--src/core/frontend/framebuffer_layout.cpp2
-rw-r--r--src/core/frontend/framebuffer_layout.h1
-rw-r--r--src/yuzu/configuration/configure_graphics.ui5
3 files changed, 8 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,
};
diff --git a/src/yuzu/configuration/configure_graphics.ui b/src/yuzu/configuration/configure_graphics.ui
index 1e4f74704..fdbb33372 100644
--- a/src/yuzu/configuration/configure_graphics.ui
+++ b/src/yuzu/configuration/configure_graphics.ui
@@ -301,6 +301,11 @@
</item>
<item>
<property name="text">
+ <string>Force 16:10</string>
+ </property>
+ </item>
+ <item>
+ <property name="text">
<string>Stretch to Window</string>
</property>
</item>