mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
SConfig: Replace bNTSC with m_region
This lets us get rid of VideoInterface::SetRegionReg, a huge hack in CEXIMemoryCard, and some minor things.
This commit is contained in:
parent
66ea9f5cc1
commit
f85266df20
13 changed files with 90 additions and 151 deletions
|
@ -11,6 +11,11 @@
|
|||
|
||||
namespace DiscIO
|
||||
{
|
||||
bool IsNTSC(Region region)
|
||||
{
|
||||
return region == Region::NTSC_J || region == Region::NTSC_U || region == Region::NTSC_K;
|
||||
}
|
||||
|
||||
// Increment CACHE_REVISION (ISOFile.cpp & GameFile.cpp) if the code below is modified
|
||||
|
||||
Region RegionSwitchGC(u8 country_code)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue