From f7032c126dd097e8083e0fc740c7c856e0f2dd58 Mon Sep 17 00:00:00 2001 From: athrxx Date: Wed, 17 Aug 2011 18:46:29 +0200 Subject: KYRA: (EOB) - fix some bugs - fix monster movement - fix character level gain - add some static res for party transfer --- engines/kyra/scene_eob.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/kyra/scene_eob.cpp') diff --git a/engines/kyra/scene_eob.cpp b/engines/kyra/scene_eob.cpp index afce9efdfa..1bd7fca04a 100644 --- a/engines/kyra/scene_eob.cpp +++ b/engines/kyra/scene_eob.cpp @@ -1012,8 +1012,8 @@ void EobCoreEngine::drawScene(int refresh) { } if (_sceneDefaultUpdate) { - resetSkipFlag(); delayUntil(_drawSceneTimer); + removeInputTop(); } if (refresh && !_partyResting) @@ -1029,7 +1029,7 @@ void EobCoreEngine::drawScene(int refresh) { if (_sceneDefaultUpdate) { _sceneDefaultUpdate = false; - _drawSceneTimer = _system->getMillis() /*+ 4 * _tickLength*/; + _drawSceneTimer = _system->getMillis() + 4 * _tickLength; } _sceneUpdateRequired = false; @@ -1141,8 +1141,8 @@ int EobCoreEngine::calcNewBlockPositionAndTestPassability(uint16 curBlock, uint1 int w = _levelBlockProperties[b].walls[direction ^ 2]; int f = _wllWallFlags[w]; - if (!f) - assert((_flags.gameID == GI_EOB1 && w < 70) || (_flags.gameID == GI_EOB2 && w < 80)); + //if (!f) + assert((_flags.gameID == GI_EOB1 && w < 70) || (_flags.gameID == GI_EOB2 && w < 80)); if (_flags.gameID == GI_EOB2 && w == 74 && _currentBlock == curBlock) { for (int i = 0; i < 5; i++) { -- cgit v1.2.3