diff options
author | Joost Peters | 2009-08-27 11:28:35 +0000 |
---|---|---|
committer | Joost Peters | 2009-08-27 11:28:35 +0000 |
commit | 3f8b961807c072dc17793793e11ae60be1097f38 (patch) | |
tree | e74517c48df93fe0824d7478c9d00d66b502bf30 | |
parent | b8fed0dd69ca4e8cb3cda1a4b6eddb2e2a8f8f4e (diff) | |
download | scummvm-rg350-3f8b961807c072dc17793793e11ae60be1097f38.tar.gz scummvm-rg350-3f8b961807c072dc17793793e11ae60be1097f38.tar.bz2 scummvm-rg350-3f8b961807c072dc17793793e11ae60be1097f38.zip |
fix compilation
svn-id: r43768
-rw-r--r-- | engines/gob/inter_playtoons.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/gob/inter_playtoons.cpp b/engines/gob/inter_playtoons.cpp index 5d37e84c71..a62f05a8f2 100644 --- a/engines/gob/inter_playtoons.cpp +++ b/engines/gob/inter_playtoons.cpp @@ -104,9 +104,10 @@ bool Inter_Playtoons::oPlaytoons_F_1B(OpFuncParams ¶ms) { var3 = _vm->_game->_script->readValExpr(); var4 = _vm->_game->_script->readValExpr(); - if (_vm->_game->_hotspots->searchHotspot(shortId)) + if (_vm->_game->_hotspots->searchHotspot(shortId)) { warning("oPlaytoons_F_1B not fully handled"); - warning("shortId %d, var2 %d var3 %d var4 %d", id, var2, var3, var4); + warning("shortId %d, var2 %d var3 %d var4 %d", shortId, var2, var3, var4); + } // else // warning("id not found %d", id);; return false; |