[Scummvm-cvs-logs] scummvm master -> 5539323e16ec10f8f72dcec0d9c25588c2ef986b

bluegr bluegr at gmail.com
Sat Mar 30 12:59:49 CET 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5539323e16 SCI: Fix two script bugs in PQ1 (message tuple typos) - bug #3605654


Commit: 5539323e16ec10f8f72dcec0d9c25588c2ef986b
    https://github.com/scummvm/scummvm/commit/5539323e16ec10f8f72dcec0d9c25588c2ef986b
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2013-03-30T04:58:53-07:00

Commit Message:
SCI: Fix two script bugs in PQ1 (message tuple typos) - bug #3605654

Changed paths:
    engines/sci/engine/message.cpp



diff --git a/engines/sci/engine/message.cpp b/engines/sci/engine/message.cpp
index 10f8094..5b297ac 100644
--- a/engines/sci/engine/message.cpp
+++ b/engines/sci/engine/message.cpp
@@ -210,6 +210,18 @@ bool MessageState::getRecord(CursorStack &stack, bool recurse, MessageRecord &re
 			t.verb = 2;
 		}
 
+		if (g_sci->getGameId() == GID_PQ1 && stack.getModule() == 38 &&
+			t.noun == 10 && t.verb == 4 && t.cond == 8 && t.seq == 1) {
+			// Using the hand icon on Keith in the Blue Room - bug #3605654
+			t.cond = 9;
+		}
+
+		if (g_sci->getGameId() == GID_PQ1 && stack.getModule() == 38 &&
+			t.noun == 10 && t.verb == 1 && t.cond == 0 && t.seq == 1) {
+			// Using the eye icon on Keith in the Blue Room - bug #3605654
+			t.cond = 13;
+		}
+
 		// Fill in known missing message tuples
 		if (g_sci->getGameId() == GID_SQ4 && stack.getModule() == 16 &&
 			t.noun == 7 && t.verb == 0 && t.cond == 3 && t.seq == 1) {






More information about the Scummvm-git-logs mailing list