From ec9c5640bd4452327094a04fb0195903c245fe9f Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 4 Sep 2009 07:09:48 +0000 Subject: Silenced an MSVC warning about an unexpected parameter, and added a FIXME svn-id: r43934 --- engines/teenagent/callbacks.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'engines/teenagent/callbacks.cpp') 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; -- cgit v1.2.3