diff options
author | Paul Gilbert | 2012-10-23 00:02:34 +1100 |
---|---|---|
committer | Paul Gilbert | 2012-10-23 00:02:34 +1100 |
commit | 95b2fe37300672313e758d5e8f4e12a89e8fa0e2 (patch) | |
tree | 04aa933e6d582800a21d6f7cbf8c1e10ccdb3ddc | |
parent | 99e4dbe2a3bb7358f8df07cb444d417bcf247eba (diff) | |
download | scummvm-rg350-95b2fe37300672313e758d5e8f4e12a89e8fa0e2.tar.gz scummvm-rg350-95b2fe37300672313e758d5e8f4e12a89e8fa0e2.tar.bz2 scummvm-rg350-95b2fe37300672313e758d5e8f4e12a89e8fa0e2.zip |
HOPKINS: Minor string and comment fix
-rw-r--r-- | engines/hopkins/anim.cpp | 2 | ||||
-rw-r--r-- | engines/hopkins/debugger.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/hopkins/anim.cpp b/engines/hopkins/anim.cpp index 128abff389..afaf37253c 100644 --- a/engines/hopkins/anim.cpp +++ b/engines/hopkins/anim.cpp @@ -1141,7 +1141,7 @@ void AnimationManager::PLAY_SEQ2(const Common::String &a1, uint32 a2, uint32 a3, _vm->_fileManager.CONSTRUIT_FICHIER(_vm->_globals.HOPSEQ, a1); if (!f.open(_vm->_globals.NFICHIER)) - error("File not found ", _vm->_globals.NFICHIER.c_str()); + error("File not found - %s", _vm->_globals.NFICHIER.c_str()); f.read(&buf, 6u); f.read(_vm->_graphicsManager.Palette, 0x320u); diff --git a/engines/hopkins/debugger.cpp b/engines/hopkins/debugger.cpp index fc70e93102..a332d2160e 100644 --- a/engines/hopkins/debugger.cpp +++ b/engines/hopkins/debugger.cpp @@ -35,4 +35,4 @@ void Debugger::setParent(HopkinsEngine *vm) { _vm = vm; } -} // End of namespace Tony +} // End of namespace Hopkins |