mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 16:26:53 +00:00
Fix item exchange string in Kyra 1 Amiga (both English and German).
svn-id: r48159
This commit is contained in:
parent
d204f97beb
commit
4221460f6d
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user