mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-23 11:32:37 +00:00
Add Triforce platform and preliminary boot.id parsing
This commit is contained in:
parent
494e2c05c2
commit
71f654cdc4
15 changed files with 41 additions and 4 deletions
|
@ -402,6 +402,7 @@ void VolumeVerifier::Start()
|
|||
|
||||
m_is_tgc = m_volume.GetBlobType() == BlobType::TGC;
|
||||
m_is_datel = m_volume.IsDatelDisc();
|
||||
m_is_triforce = m_volume.GetVolumeType() == Platform::Triforce;
|
||||
m_is_not_retail = (m_volume.GetVolumeType() == Platform::WiiDisc && !m_volume.HasWiiHashes()) ||
|
||||
IsDebugSigned();
|
||||
|
||||
|
@ -1373,6 +1374,13 @@ void VolumeVerifier::Finish()
|
|||
return;
|
||||
}
|
||||
|
||||
if (m_is_triforce)
|
||||
{
|
||||
m_result.summary_text =
|
||||
Common::GetStringT("Dolphin is currently unable to verify Triforce games.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_result.redump.status == RedumpVerifier::Status::BadDump &&
|
||||
highest_severity <= Severity::Low)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue