ALL: replace 2 more 'download engine data' instructions

This commit is contained in:
Ben Castricum 2016-12-06 14:31:58 +01:00
parent 55512414dd
commit 0e47d71928
2 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ bool StaticResource::loadStaticResourceFile() {
}
if (!foundWorkingKyraDat) {
Common::String errorMessage = "You're missing the '" + StaticResource::staticDataFilename() + "' file or it got corrupted, (re)get it from the ScummVM website";
Common::String errorMessage = "You're missing the '" + StaticResource::staticDataFilename() + "' engine data file or it got corrupted. Read the README for instructions.";
GUIErrorMessage(errorMessage);
error("%s", errorMessage.c_str());
}

View File

@ -255,7 +255,7 @@ bool TonyEngine::loadTonyDat() {
int numVariant = in.readUint16BE();
if (expectedLangVariant > numVariant - 1) {
msg = Common::String::format("Font variant not present in 'tony.dat'. Get it from the ScummVM website");
msg = Common::String::format(_("Font variant not present in '%s' engine data file. Read the README for instructions."), filename.c_str());
GUIErrorMessage(msg);
warning("%s", msg.c_str());