mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-20 08:48:13 +00:00
SCI: Fix two script bugs in PQ1 (message tuple typos) - bug #3605654
This commit is contained in:
parent
e376535ad4
commit
5539323e16
@ -210,6 +210,18 @@ bool MessageState::getRecord(CursorStack &stack, bool recurse, MessageRecord &re
|
|||||||
t.verb = 2;
|
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
|
// Fill in known missing message tuples
|
||||||
if (g_sci->getGameId() == GID_SQ4 && stack.getModule() == 16 &&
|
if (g_sci->getGameId() == GID_SQ4 && stack.getModule() == 16 &&
|
||||||
t.noun == 7 && t.verb == 0 && t.cond == 3 && t.seq == 1) {
|
t.noun == 7 && t.verb == 0 && t.cond == 3 && t.seq == 1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user