diff options
author | Eugene Sandulenko | 2005-11-14 03:26:25 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-11-14 03:26:25 +0000 |
commit | ccec4943fd79164fe1c15befa1d1a2897effc014 (patch) | |
tree | 45f6ae1d0c995fe8a59369820c0485d4683bf709 /kyra | |
parent | 8f4e03935eecfd3400020887b49c742c33cdb1cc (diff) | |
download | scummvm-rg350-ccec4943fd79164fe1c15befa1d1a2897effc014.tar.gz scummvm-rg350-ccec4943fd79164fe1c15befa1d1a2897effc014.tar.bz2 scummvm-rg350-ccec4943fd79164fe1c15befa1d1a2897effc014.zip |
Make error message about invalid resource file more clear to end user.
svn-id: r19590
Diffstat (limited to 'kyra')
-rw-r--r-- | kyra/staticres.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kyra/staticres.cpp b/kyra/staticres.cpp index 3882c74b77..f52edc5ae5 100644 --- a/kyra/staticres.cpp +++ b/kyra/staticres.cpp @@ -88,7 +88,7 @@ void KyraEngine::res_loadResources(int type) { temp = 0; if (version < RESFILE_VERSION) { - error("invalid resource file version (%d)", version); + error("invalid KYRA.DAT file version (%d, required %d)", version, RESFILE_VERSION); } if (gameID != _game) { error("invalid game id (%d)", gameID); |