mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-07 10:50:29 -05:00
Add a link to ship.equipment to the CRC error message box during extraction (#3939)
* Add a link to ship.equipment to the CRC error message box during extraction * Improve message and add to ShowCrcErrorBox * Change 'known good roms' to 'known compatible roms'
This commit is contained in:
parent
bbac8f8da4
commit
bdfcf39e56
@ -107,7 +107,8 @@ void Extractor::ShowSizeErrorBox() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Extractor::ShowCrcErrorBox() const {
|
void Extractor::ShowCrcErrorBox() const {
|
||||||
ShowErrorBox("Rom CRC invalid", "Rom CRC did not match the list of known good roms. Please find another.");
|
ShowErrorBox("Rom CRC invalid", "Rom CRC did not match the list of known compatible roms. Please find another.\n\n"
|
||||||
|
"Visit https://ship.equipment/ to validate your ROM and see a list of compatible versions");
|
||||||
}
|
}
|
||||||
|
|
||||||
void Extractor::ShowCompressedErrorBox() const {
|
void Extractor::ShowCompressedErrorBox() const {
|
||||||
@ -479,7 +480,8 @@ bool Extractor::Run(std::string searchPath, RomSearchMode searchMode) {
|
|||||||
ShowCrcErrorBox();
|
ShowCrcErrorBox();
|
||||||
} else {
|
} else {
|
||||||
ShowErrorBox("Rom CRC invalid",
|
ShowErrorBox("Rom CRC invalid",
|
||||||
"Rom CRC did not match the list of known good roms. Trying the next one...");
|
"Rom CRC did not match the list of known compatible roms. Trying the next one...\n\n"
|
||||||
|
"Visit https://ship.equipment/ to validate your ROM and see a list of compatible versions");
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user