diff options
author | Filippos Karapetis | 2009-09-04 07:09:48 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-09-04 07:09:48 +0000 |
commit | ec9c5640bd4452327094a04fb0195903c245fe9f (patch) | |
tree | f4f862ee3dd07e0f052332b6cfb543028aff3675 /engines | |
parent | 19ff151442b45e3575ab968a941069803ce45c9a (diff) | |
download | scummvm-rg350-ec9c5640bd4452327094a04fb0195903c245fe9f.tar.gz scummvm-rg350-ec9c5640bd4452327094a04fb0195903c245fe9f.tar.bz2 scummvm-rg350-ec9c5640bd4452327094a04fb0195903c245fe9f.zip |
Silenced an MSVC warning about an unexpected parameter, and added a FIXME
svn-id: r43934
Diffstat (limited to 'engines')
-rw-r--r-- | engines/teenagent/callbacks.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/teenagent/callbacks.cpp b/engines/teenagent/callbacks.cpp index 2b2f9b85f7..86df52870d 100644 --- a/engines/teenagent/callbacks.cpp +++ b/engines/teenagent/callbacks.cpp @@ -1154,7 +1154,10 @@ bool TeenAgentEngine::processCallback(uint16 addr) { loadScene(24, 230, 170, 1); playSound(52, 3); playAnimation(601); - moveTo(230, 179, 3); + // FIXME: the third parameter here is a number, but the function expects a boolean + // Changing it to "1" for now (i.e. true) + //moveTo(230, 179, 3); + moveTo(230, 179, 1); if (!CHECK_FLAG(0xDBA4, 1)) displayMessage(0x37ea); //it's kinda dark here return true; |