From ada25791c6404092db58aea1ecedb33e2c0ef8d2 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 28 Dec 2007 04:00:15 +0000 Subject: Bugfix for action perform timeout to correctly show an question mark bubble. Also changed a writeSint16LE call to be more correctly writeUint16LE svn-id: r30026 --- engines/lure/hotspots.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/lure/hotspots.cpp') diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index f317834a4a..7b5ec7bccd 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -949,7 +949,7 @@ HotspotPrecheckResult Hotspot::actionPrecheck(HotspotData *hotspot) { if (actionCtr() >= 6) { warning("actionCtr exceeded"); setActionCtr(0); - converse(NOONE_ID, 0xD); + showMessage(13, NOONE_ID); return PC_EXCESS; } @@ -4429,7 +4429,7 @@ void CurrentActionEntry::saveToStream(WriteStream *stream) { 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"); -- cgit v1.2.3