aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/files.cpp
diff options
context:
space:
mode:
authorStrangerke2012-11-16 08:32:40 +0100
committerStrangerke2012-11-16 08:32:40 +0100
commit6d1db995408f3325824698b330300a0292a49931 (patch)
tree4cfca99c5e9801dc8ed48b5d2f114d8633f4d37a /engines/hopkins/files.cpp
parente920b06ececf39db787b3ec26be3ffe1b498ea1d (diff)
downloadscummvm-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.cpp2
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();