diff options
| author | Mateus B. Cassiano <mbc07@live.com> | 2021-05-26 05:52:21 -0400 |
|---|---|---|
| committer | Mateus B. Cassiano <mbc07@live.com> | 2021-05-26 05:52:21 -0400 |
| commit | 2c598e46abd25959933a764552b0c9e49d8bddc5 (patch) | |
| tree | b9ea917e246723dc96b26a1e944459891d1255e9 /Source/Core/DiscIO/VolumeVerifier.cpp | |
| parent | ff08b85740f52394433ebc2a49c22b324c858dc7 (diff) | |
VolumeVerifier: increase problem severity for incorrectly signed TMDs
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index efbf844794..0f373a3596 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -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.")); } } |
