summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeVerifier.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-10-23 20:44:06 +0200
committerGitHub <noreply@github.com>2020-10-23 20:44:06 +0200
commit285b926e92bb1536c8d0b708a21b08b49b52382d (patch)
tree3c807bec3b260eff67563d2bcf143a3d39103ec7 /Source/Core/DiscIO/VolumeVerifier.cpp
parente89db89d9ea9c8f2305f0c90bb431a1a87f6074c (diff)
parent88bc32b6380d0da55731e084ee47fd3e89340d3e (diff)
Merge pull request #8782 from Pokechu22/missing-serial-version-data
Explain how to fix "Serial and/or version data is missing"
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeVerifier.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp
index 8ba1644fa5..fc78cdd601 100644
--- a/Source/Core/DiscIO/VolumeVerifier.cpp
+++ b/Source/Core/DiscIO/VolumeVerifier.cpp
@@ -312,7 +312,11 @@ std::vector<RedumpVerifier::PotentialMatch> RedumpVerifier::ScanDatfile(const st
// so show a panic alert rather than just using ERROR_LOG
// i18n: "Serial" refers to serial numbers, e.g. RVL-RSBE-USA
- PanicAlertT("Serial and/or version data is missing from %s", GetPathForSystem(system).c_str());
+ PanicAlertT("Serial and/or version data is missing from %s\n"
+ "Please append \"%s\" (without the quotes) to the datfile URL when downloading\n"
+ "Example: %s",
+ GetPathForSystem(system).c_str(), "serial,version",
+ "http://redump.org/datfile/gc/serial,version");
m_result = {Status::Error, Common::GetStringT("Failed to parse Redump.org data")};
return {};
}