From 6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7 Mon Sep 17 00:00:00 2001 From: lat9nq <22451773+lat9nq@users.noreply.github.com> Date: Wed, 16 Aug 2023 22:57:19 -0400 Subject: [PATCH] uisettings: Add TODO for stretched aspect being ignored --- src/yuzu/uisettings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yuzu/uisettings.cpp b/src/yuzu/uisettings.cpp index 78f927ba9a..1c833767b4 100644 --- a/src/yuzu/uisettings.cpp +++ b/src/yuzu/uisettings.cpp @@ -46,6 +46,7 @@ u32 CalculateWidth(u32 height, Settings::AspectRatio ratio) { return height * 16 / 10; case Settings::AspectRatio::R16_9: case Settings::AspectRatio::Stretch: + // TODO: Move this function wherever appropriate to implement Stretched aspect break; } return height * 16 / 9;