diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2020-04-30 16:15:29 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2020-10-21 15:39:26 -0700 |
| commit | 88bc32b6380d0da55731e084ee47fd3e89340d3e (patch) | |
| tree | afa8a2c302a0f40ad697b4c871af7c346b434942 /Source | |
| parent | a8b7c3b5772d37b0ad7c76523ef2c7587c2f81f7 (diff) | |
Explain how to fix "Serial and/or version data is missing"
Diffstat (limited to 'Source')
| -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 f626250ca5..47aad40e27 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -313,7 +313,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 {}; } |
