[Scummvm-cvs-logs] SF.net SVN: scummvm:[48159] scummvm/trunk/engines/kyra/items_lok.cpp
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Thu Mar 4 17:34:27 CET 2010
Revision: 48159
http://scummvm.svn.sourceforge.net/scummvm/?rev=48159&view=rev
Author: lordhoto
Date: 2010-03-04 16:34:27 +0000 (Thu, 04 Mar 2010)
Log Message:
-----------
Fix item exchange string in Kyra 1 Amiga (both English and German).
Modified Paths:
--------------
scummvm/trunk/engines/kyra/items_lok.cpp
Modified: scummvm/trunk/engines/kyra/items_lok.cpp
===================================================================
--- scummvm/trunk/engines/kyra/items_lok.cpp 2010-03-02 00:18:00 UTC (rev 48158)
+++ scummvm/trunk/engines/kyra/items_lok.cpp 2010-03-04 16:34:27 UTC (rev 48159)
@@ -434,7 +434,10 @@
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();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list