Fix item exchange string in Kyra 1 Amiga (both English and German).

svn-id: r48159
This commit is contained in:
Johannes Schickel 2010-03-04 16:34:27 +00:00
parent d204f97beb
commit 4221460f6d

View File

@ -434,7 +434,10 @@ void KyraEngine_LoK::exchangeItemWithMouseItem(uint16 sceneId, int itemIndex) {
setMouseItem(_itemInHand);
assert(_itemList && _takenList);
updateSentenceCommand(_itemList[getItemListIndex(_itemInHand)], _takenList[1], 179);
if (_flags.platform == Common::kPlatformAmiga)
updateSentenceCommand(_itemList[getItemListIndex(_itemInHand)], _takenList[0], 179);
else
updateSentenceCommand(_itemList[getItemListIndex(_itemInHand)], _takenList[1], 179);
_screen->showMouse();
clickEventHandler2();
}