From cc40a019e5f93f79d43b22773a04101006048e9f Mon Sep 17 00:00:00 2001 From: athrxx Date: Wed, 28 Dec 2011 00:55:09 +0100 Subject: KYRA: (EOB) - fix EOB1 intro glitch --- engines/kyra/eobcommon.cpp | 2 +- engines/kyra/sequences_eob.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/kyra/eobcommon.cpp b/engines/kyra/eobcommon.cpp index 304d1a4539..15cabd9293 100644 --- a/engines/kyra/eobcommon.cpp +++ b/engines/kyra/eobcommon.cpp @@ -1059,7 +1059,7 @@ int EoBCoreEngine::countCharactersWithSpecificItems(int16 itemType, int16 itemVa } int EoBCoreEngine::checkInventoryForItem(int character, int16 itemType, int16 itemValue) { - if (character < 0 ) + if (character < 0) return -1; for (int i = 0; i < 27; i++) { diff --git a/engines/kyra/sequences_eob.cpp b/engines/kyra/sequences_eob.cpp index 2d8e85471b..65c149ea8f 100644 --- a/engines/kyra/sequences_eob.cpp +++ b/engines/kyra/sequences_eob.cpp @@ -539,7 +539,7 @@ void EoBEngine::seq_hands() { uint32 end = _system->getMillis() + _tickLength; _screen->fillRect(0, 0, 167, 63, 157); _screen->drawShape(2, shp1, i, 4, 0); - _screen->drawShape(2, shp1, 105 - i, 4, 0); + _screen->drawShape(2, shp2, 105 - i, 4, 0); _screen->copyRegion(0, 0, 144, 32, 168, 64, 2, 0, Screen::CR_NO_P_CHECK); _screen->updateScreen(); delayUntil(end); -- cgit v1.2.3