mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-14 07:48:58 +00:00
ALL: replace 2 more 'download engine data' instructions
This commit is contained in:
parent
55512414dd
commit
0e47d71928
@ -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());
|
||||
}
|
||||
|
@ -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());
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user