Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9753 from mbc07/VolumeVerifier_TMD_severity
VolumeVerifier: increase problem severity for incorrectly signed TMDs
  • Loading branch information
leoetlino committed Jun 13, 2021
2 parents d536a50 + 2c598e4 commit c2ac21c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/Core/DiscIO/VolumeVerifier.cpp
Expand Up @@ -971,7 +971,11 @@ void VolumeVerifier::CheckMisc()
es->VerifyContainer(IOS::HLE::ESDevice::VerifyContainerType::TMD,
IOS::HLE::ESDevice::VerifyMode::DoNotUpdateCertStore, tmd, cert_chain))
{
AddProblem(Severity::Low, Common::GetStringT("The TMD is not correctly signed."));
AddProblem(
Severity::Medium,
Common::GetStringT("The TMD is not correctly signed. If you move or copy this title to "
"the SD Card, the Wii System Menu will not launch it anymore and will "
"also refuse to copy or move it back to the NAND."));
}
}

Expand Down

0 comments on commit c2ac21c

Please sign in to comment.