diff options
| author | Max Horn | 2011-03-24 14:09:22 +0100 | 
|---|---|---|
| committer | Max Horn | 2011-03-24 16:46:45 +0100 | 
| commit | 754c250c65ca746d7620d74928ce91af4e5ef228 (patch) | |
| tree | 10166d21c66dba2c0c6fd786549b233cc5e5a058 | |
| parent | b3471354d050eaed62226f807cb73e4bc6ccf083 (diff) | |
| download | scummvm-rg350-754c250c65ca746d7620d74928ce91af4e5ef228.tar.gz scummvm-rg350-754c250c65ca746d7620d74928ce91af4e5ef228.tar.bz2 scummvm-rg350-754c250c65ca746d7620d74928ce91af4e5ef228.zip | |
HUGO: When erroring out due to a missing file, tell the user which file is missing
| -rw-r--r-- | engines/hugo/file.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp index f4eada456d..214390c604 100644 --- a/engines/hugo/file.cpp +++ b/engines/hugo/file.cpp @@ -532,7 +532,7 @@ void FileManager::printBootText() {  			warning("printBootText - Skipping as H1 Dos may be a freeware");  			return;  		} else { -			error("Missing startup file"); +			error("Missing startup file '%s'", getBootFilename());  		}  	} @@ -574,7 +574,7 @@ void FileManager::readBootFile() {  			_vm->_boot.registered = kRegFreeware;  			return;  		} else { -			error("Missing startup file"); +			error("Missing startup file '%s'", getBootFilename());  		}  	} | 
