瀏覽代碼

uisettings: Add TODO for stretched aspect being ignored

lat9nq 3 年之前
父節點
當前提交
6af8cca2c1
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/yuzu/uisettings.cpp

+ 1 - 0
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;