Skip to content

Commit

Permalink
ALL: replace 2 more 'download engine data' instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Castricum committed Dec 6, 2016
1 parent 5551241 commit 0e47d71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion engines/kyra/staticres.cpp
Expand Up @@ -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());
}
Expand Down
2 changes: 1 addition & 1 deletion engines/tony/tony.cpp
Expand Up @@ -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());

Expand Down

0 comments on commit 0e47d71

Please sign in to comment.