[Scummvm-cvs-logs] SF.net SVN: scummvm: [28721] scummvm/trunk/engines/saga/script.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Sat Aug 25 15:01:23 CEST 2007
Revision: 28721
http://scummvm.svn.sourceforge.net/scummvm/?rev=28721&view=rev
Author: thebluegr
Date: 2007-08-25 06:01:22 -0700 (Sat, 25 Aug 2007)
Log Message:
-----------
Added a note on mouse right button action for IHNM
Modified Paths:
--------------
scummvm/trunk/engines/saga/script.cpp
Modified: scummvm/trunk/engines/saga/script.cpp
===================================================================
--- scummvm/trunk/engines/saga/script.cpp 2007-08-25 12:49:03 UTC (rev 28720)
+++ scummvm/trunk/engines/saga/script.cpp 2007-08-25 13:01:22 UTC (rev 28721)
@@ -771,7 +771,13 @@
objectId = newObjectId;
if (_vm->getGameType() == GType_ITE)
objectFlags = kObjUseWith;
+ // Note: for IHNM, the default right button action is "Look at" for actors,
+ // but "Talk to" makes much more sense
newRightButtonVerb = getVerbType(kVerbTalkTo);
+ // Slight hack because of the above change: the jukebox in Gorrister's chapter
+ // is an actor, so change the right button action to "Look at"
+ if (_vm->getGameType() == GType_IHNM && objectId == 8199)
+ newRightButtonVerb = getVerbType(kVerbLookAt);
if ((_currentVerb == getVerbType(kVerbPickUp)) ||
(_currentVerb == getVerbType(kVerbOpen)) ||
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