Remove p from resolution strings. The Param.sfo doesn't specificy progressive/interlaced

This commit is contained in:
Megamouse 2024-04-28 00:58:51 +02:00
parent cebf6dcd01
commit 8e5fec785e

View File

@ -79,12 +79,12 @@ std::string Localized::GetStringFromU32(const u32& key, const std::map<u32, QStr
Localized::resolution::resolution()
: mode({
{ psf::resolution_flag::_480p, tr("480p") },
{ psf::resolution_flag::_576p, tr("576p") },
{ psf::resolution_flag::_720p, tr("720p") },
{ psf::resolution_flag::_1080p, tr("1080p") },
{ psf::resolution_flag::_480p_16_9, tr("480p 16:9") },
{ psf::resolution_flag::_576p_16_9, tr("576p 16:9") },
{ psf::resolution_flag::_480p, tr("480") },
{ psf::resolution_flag::_576p, tr("576") },
{ psf::resolution_flag::_720p, tr("720") },
{ psf::resolution_flag::_1080p, tr("1080") },
{ psf::resolution_flag::_480p_16_9, tr("480 16:9") },
{ psf::resolution_flag::_576p_16_9, tr("576 16:9") },
})
{
}