Skip to content
Permalink
Browse files
Merge pull request #8782 from Pokechu22/missing-serial-version-data
Explain how to fix "Serial and/or version data is missing"
  • Loading branch information
leoetlino committed Oct 23, 2020
2 parents e89db89 + 88bc32b commit 285b926
Showing 1 changed file with 5 additions and 1 deletion.
@@ -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 {};
}

0 comments on commit 285b926

Please sign in to comment.