Merge pull request #3591 from phire/VC_widescreen

Make all Virtual console games 4:3 (and cleanup GameInis)
This commit is contained in:
Pierre Bourdon
2016-02-16 00:41:33 +01:00
387 changed files with 186 additions and 8088 deletions

View File

@ -973,6 +973,12 @@ std::vector<std::string> SConfig::GetGameIniFilenames(const std::string& id, u16
{
std::vector<std::string> filenames;
if (id.empty())
return filenames;
// INIs that match the system code (unique for each Virtual Console system)
filenames.push_back(id.substr(0, 1) + ".ini");
// INIs that match all regions
if (id.size() >= 4)
filenames.push_back(id.substr(0, 3) + ".ini");