mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Return nothing from VolumeWii::GetGameTDBID if Datel
RedumpVerifier relies on this.
This commit is contained in:
parent
42ec861469
commit
f9705fd117
2 changed files with 7 additions and 5 deletions
|
@ -313,6 +313,10 @@ std::string VolumeWii::GetGameID(const Partition& partition) const
|
|||
|
||||
std::string VolumeWii::GetGameTDBID(const Partition& partition) const
|
||||
{
|
||||
// Don't return an ID for Datel discs
|
||||
if (m_game_partition == PARTITION_NONE)
|
||||
return "";
|
||||
|
||||
return GetGameID(partition);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue