aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/workarounds.h
diff options
context:
space:
mode:
authorMartin Kiewitz2017-10-07 22:11:25 +0200
committerMartin Kiewitz2017-10-07 22:11:25 +0200
commit60c2c2867cb137bd2087d414e91d27a0f0ea0aee (patch)
tree0ac61e8a3998b77ce1dee8fe3fc87169090d1756 /engines/sci/engine/workarounds.h
parent7d037495be7a291070a1f0f3820c02a62d9524af (diff)
downloadscummvm-rg350-60c2c2867cb137bd2087d414e91d27a0f0ea0aee.tar.gz
scummvm-rg350-60c2c2867cb137bd2087d414e91d27a0f0ea0aee.tar.bz2
scummvm-rg350-60c2c2867cb137bd2087d414e91d27a0f0ea0aee.zip
SCI: Change index inside workaround tables to an index range
So that one can specify an entire range of temp variables by using just one single entry.
Diffstat (limited to 'engines/sci/engine/workarounds.h')
-rw-r--r--engines/sci/engine/workarounds.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/workarounds.h b/engines/sci/engine/workarounds.h
index a965a14a42..a462fddcaa 100644
--- a/engines/sci/engine/workarounds.h
+++ b/engines/sci/engine/workarounds.h
@@ -55,7 +55,8 @@ struct SciWorkaroundEntry {
const char *objectName;
const char *methodName;
const uint16 *localCallSignature;
- int index;
+ int fromIndex;
+ int toIndex;
SciWorkaroundSolution newValue;
};