summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeVerifier.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-08-01 16:53:42 +0200
committerJosJuice <josjuice@gmail.com>2022-08-04 22:01:00 +0200
commit6fc3bbbdd9caa53157ea850f19fa0f8d5da7c3f7 (patch)
tree18eef6d08787dd77b9143e67c8b80b0149f25e6e /Source/Core/DiscIO/VolumeVerifier.cpp
parent02e3125f23c3844a28887289011af36808426196 (diff)
DiscIO/VolumeVerifier: Add a note about NFS bad dumps
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeVerifier.cpp29
1 files changed, 24 insertions, 5 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp
index f6c2bb20e0..50cfb2a17f 100644
--- a/Source/Core/DiscIO/VolumeVerifier.cpp
+++ b/Source/Core/DiscIO/VolumeVerifier.cpp
@@ -1385,8 +1385,18 @@ void VolumeVerifier::Finish()
if (m_result.redump.status == RedumpVerifier::Status::BadDump &&
highest_severity <= Severity::Low)
{
- m_result.summary_text = Common::GetStringT(
- "This is a bad dump. This doesn't necessarily mean that the game won't run correctly.");
+ if (m_volume.GetBlobType() == BlobType::NFS)
+ {
+ m_result.summary_text =
+ Common::GetStringT("Compared to the Wii disc release of the game, this is a bad dump. "
+ "Despite this, it's possible that this is a good dump compared to the "
+ "Wii U eShop release of the game. Dolphin can't verify this.");
+ }
+ else
+ {
+ m_result.summary_text = Common::GetStringT(
+ "This is a bad dump. This doesn't necessarily mean that the game won't run correctly.");
+ }
}
else
{
@@ -1411,9 +1421,18 @@ void VolumeVerifier::Finish()
}
break;
case Severity::Low:
- m_result.summary_text =
- Common::GetStringT("Problems with low severity were found. They will most "
- "likely not prevent the game from running.");
+ if (m_volume.GetBlobType() == BlobType::NFS)
+ {
+ m_result.summary_text = Common::GetStringT(
+ "Compared to the Wii disc release of the game, problems of low severity were found. "
+ "Despite this, it's possible that this is a good dump compared to the Wii U eShop "
+ "release of the game. Dolphin can't verify this.");
+ }
+ else
+ {
+ Common::GetStringT("Problems with low severity were found. They will most "
+ "likely not prevent the game from running.");
+ }
break;
case Severity::Medium:
m_result.summary_text +=