diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-16 22:57:19 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-16 22:57:19 -0400 |
commit | 6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7 (patch) | |
tree | b8ee89bb0b7f00996a7a5352c1c4e5e4d223b82c | |
parent | e28b93695096a15aa46eb7ffe9ab66a92d7d8330 (diff) |
uisettings: Add TODO for stretched aspect being ignored
-rw-r--r-- | src/yuzu/uisettings.cpp | 1 |
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) { 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; |