mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Support a gcm revision-specific game ini for cheats + partially fix gecko codes in default ini.
The local ini is not revision-specific because it would require renaming everything. Meh.
This commit is contained in:
parent
1ed06f1dc4
commit
f57ff0a569
25 changed files with 134 additions and 93 deletions
|
@ -54,6 +54,13 @@ std::string CVolumeGC::GetUniqueID() const
|
|||
return ID;
|
||||
}
|
||||
|
||||
std::string CVolumeGC::GetRevisionSpecificUniqueID() const
|
||||
{
|
||||
char rev[16];
|
||||
sprintf(rev, "r%d", GetRevision());
|
||||
return GetUniqueID() + rev;
|
||||
}
|
||||
|
||||
IVolume::ECountry CVolumeGC::GetCountry() const
|
||||
{
|
||||
if (!m_pReader)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue