diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-17 04:57:19 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-17 04:57:19 +0200 |
commit | 6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7 (patch) | |
tree | b8ee89bb0b7f00996a7a5352c1c4e5e4d223b82c | |
parent | configure_ui: Silence MSVC warning (diff) | |
download | yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar.gz yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar.bz2 yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar.lz yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar.xz yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.tar.zst yuzu-6af8cca2c1596f935cc9f71bf8b4b1497b9db5f7.zip |
-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; |