summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar lat9nq2023-08-16 22:57:19 -0400
committerGravatar lat9nq2023-08-16 22:57:19 -0400
commit6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7 (patch)
treeb8ee89bb0b7f00996a7a5352c1c4e5e4d223b82c
parentconfigure_ui: Silence MSVC warning (diff)
downloadyuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar.gz
yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar.xz
yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.zip
uisettings: Add TODO for stretched aspect being ignored
Diffstat (limited to '')
-rw-r--r--src/yuzu/uisettings.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/uisettings.cpp b/src/yuzu/uisettings.cpp
index 78f927ba9..1c833767b 100644
--- a/src/yuzu/uisettings.cpp
+++ b/src/yuzu/uisettings.cpp
@@ -46,6 +46,7 @@ u32 CalculateWidth(u32 height, Settings::AspectRatio ratio) {
46 return height * 16 / 10; 46 return height * 16 / 10;
47 case Settings::AspectRatio::R16_9: 47 case Settings::AspectRatio::R16_9:
48 case Settings::AspectRatio::Stretch: 48 case Settings::AspectRatio::Stretch:
49 // TODO: Move this function wherever appropriate to implement Stretched aspect
49 break; 50 break;
50 } 51 }
51 return height * 16 / 9; 52 return height * 16 / 9;