diff options
author | Arnaud Boutonné | 2010-02-13 22:17:17 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-02-13 22:17:17 +0000 |
commit | 17de7acd7b19e94dcc0819d9eafe5a47903766cc (patch) | |
tree | 94d6d5e96517669355e0b376f2546a525b7a3b33 /engines | |
parent | 5ba36c8216e1a63064b699c6e404514dca180024 (diff) | |
download | scummvm-rg350-17de7acd7b19e94dcc0819d9eafe5a47903766cc.tar.gz scummvm-rg350-17de7acd7b19e94dcc0819d9eafe5a47903766cc.tar.bz2 scummvm-rg350-17de7acd7b19e94dcc0819d9eafe5a47903766cc.zip |
Fix a crash in previous commit
svn-id: r48054
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/resources.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/resources.cpp b/engines/gob/resources.cpp index ee36a1f7ce..055676e6b9 100644 --- a/engines/gob/resources.cpp +++ b/engines/gob/resources.cpp @@ -576,7 +576,7 @@ TextItem *Resources::getTextItem(uint16 id) const { // HACK: Some Fascination versions (Amiga, Atari and first PC floppies) have a different header, which is a problem here. // TODO: Handle that in a proper way if ((_vm->getGameType() == kGameTypeFascination) & (_totTextTable->size < 0)) - warning("totTextTable with negative size id:%d offset:%d in file %s : (size: %d)", id, totItem.offset, totItem.size, _totFile.c_str(), _totTextTable->size); + warning("totTextTable with negative size id:%d offset:%d", id, totItem.offset, totItem.size); else return 0; } |