uisettings: Add TODO for stretched aspect being ignored

This commit is contained in:
lat9nq 2023-08-16 22:57:19 -04:00
parent 73111dbc46
commit 251481a19c

View file

@ -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;