[Scummvm-cvs-logs] SF.net SVN: scummvm: [30026] scummvm/trunk/engines/lure/hotspots.cpp
dreammaster at users.sourceforge.net
dreammaster at users.sourceforge.net
Fri Dec 28 05:00:15 CET 2007
Revision: 30026
http://scummvm.svn.sourceforge.net/scummvm/?rev=30026&view=rev
Author: dreammaster
Date: 2007-12-27 20:00:15 -0800 (Thu, 27 Dec 2007)
Log Message:
-----------
Bugfix for action perform timeout to correctly show an question mark bubble. Also changed a writeSint16LE call to be more correctly writeUint16LE
Modified Paths:
--------------
scummvm/trunk/engines/lure/hotspots.cpp
Modified: scummvm/trunk/engines/lure/hotspots.cpp
===================================================================
--- scummvm/trunk/engines/lure/hotspots.cpp 2007-12-28 01:02:52 UTC (rev 30025)
+++ scummvm/trunk/engines/lure/hotspots.cpp 2007-12-28 04:00:15 UTC (rev 30026)
@@ -949,7 +949,7 @@
if (actionCtr() >= 6) {
warning("actionCtr exceeded");
setActionCtr(0);
- converse(NOONE_ID, 0xD);
+ showMessage(13, NOONE_ID);
return PC_EXCESS;
}
@@ -4429,7 +4429,7 @@
stream->writeUint16LE(supportData().param(index));
} else {
// Write out the Id for the static entry
- stream->writeSint16LE(supportData().id());
+ stream->writeUint16LE(supportData().id());
}
}
debugC(ERROR_DETAILED, kLureDebugAnimations, "Finished saving hotspot action entry");
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