video: Remove pointless aspect ratio option

- The auto option is used when requesting the system is works like a
"dont care" specifier to tell the system to use what settings have been
passed in by HDMI EDID or the user TV type setting. Since this option
simulates the "TV type setting", auto makes no sense and is also not
something you can select on a PS3.
- Also adds a few missing checks.
This commit is contained in:
kd-11 2020-01-07 00:48:58 +03:00 committed by kd-11
parent c51779d4d3
commit ad845861be
4 changed files with 26 additions and 6 deletions

View file

@ -157,7 +157,6 @@ void fmt_class_string<video_aspect>::format(std::string& out, u64 arg)
{
switch (value)
{
case video_aspect::_auto: return "Auto";
case video_aspect::_4_3: return "4:3";
case video_aspect::_16_9: return "16:9";
}