diff options
author | Arnaud Boutonné | 2010-04-27 20:47:06 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-04-27 20:47:06 +0000 |
commit | 8275b3e13b6eba5bd04bc6863c416555715fbea1 (patch) | |
tree | 7ad028c3bc43450d4dcb14579f04b3715a507fa1 /engines/gob | |
parent | 40525d1bb2cb47fa090ed2ff67c99c857654cce0 (diff) | |
download | scummvm-rg350-8275b3e13b6eba5bd04bc6863c416555715fbea1.tar.gz scummvm-rg350-8275b3e13b6eba5bd04bc6863c416555715fbea1.tar.bz2 scummvm-rg350-8275b3e13b6eba5bd04bc6863c416555715fbea1.zip |
Fix warning using GCC 4.5
svn-id: r48819
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/inter_playtoons.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/gob/inter_playtoons.cpp b/engines/gob/inter_playtoons.cpp index 96bb61ea77..c9b962579b 100644 --- a/engines/gob/inter_playtoons.cpp +++ b/engines/gob/inter_playtoons.cpp @@ -193,8 +193,7 @@ bool Inter_Playtoons::oPlaytoons_putPixel(OpFuncParams ¶ms) { _vm->_draw->_destSpriteX = _vm->_game->_script->readValExpr(); _vm->_draw->_destSpriteY = _vm->_game->_script->readValExpr(); -// _expression->printExpr(99); - _vm->_game->_script->readExpr(99, false); + _vm->_game->_script->readExpr(99, 0); //unk_var is always set to 0 in Playtoons _vm->_draw->_frontColor = _vm->_game->_script->getResultInt() & 0xFFFF; // + unk_var; |