diff options
| author | Strangerke | 2012-11-16 08:32:40 +0100 |
|---|---|---|
| committer | Strangerke | 2012-11-16 08:32:40 +0100 |
| commit | 6d1db995408f3325824698b330300a0292a49931 (patch) | |
| tree | 4cfca99c5e9801dc8ed48b5d2f114d8633f4d37a /engines/hopkins/files.cpp | |
| parent | e920b06ececf39db787b3ec26be3ffe1b498ea1d (diff) | |
| download | scummvm-rg350-6d1db995408f3325824698b330300a0292a49931.tar.gz scummvm-rg350-6d1db995408f3325824698b330300a0292a49931.tar.bz2 scummvm-rg350-6d1db995408f3325824698b330300a0292a49931.zip | |
HOPKINS: Remove some magic values, add a safety check in Copy_Video_Vbe16
Diffstat (limited to 'engines/hopkins/files.cpp')
| -rw-r--r-- | engines/hopkins/files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/files.cpp b/engines/hopkins/files.cpp index 79b672ca33..aafa56691f 100644 --- a/engines/hopkins/files.cpp +++ b/engines/hopkins/files.cpp @@ -99,7 +99,7 @@ void FileManager::DMESS1() { void FileManager::bload(const Common::String &file, byte *buf) { Common::File f; if (!f.open(file)) - error("Error openinig file - %s", file.c_str()); + error("Error opening file - %s", file.c_str()); int32 filesize = f.size(); _vm->_fileManager.bload_it(f, buf, filesize); f.close(); |
