GameList: Seperate disc region and console region

This commit is contained in:
Connor McLaughlin
2020-03-12 13:51:29 +10:00
parent e8a5259e68
commit e0a339ca96
8 changed files with 110 additions and 43 deletions

View File

@ -147,11 +147,11 @@ public:
{
switch (ge.region)
{
case ConsoleRegion::NTSC_J:
case DiscRegion::NTSC_J:
return m_region_jp_pixmap;
case ConsoleRegion::NTSC_U:
case DiscRegion::NTSC_U:
return m_region_us_pixmap;
case ConsoleRegion::PAL:
case DiscRegion::PAL:
default:
return m_region_eu_pixmap;
}