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.
This commit is contained in:
Martin Kiewitz 2017-10-07 22:11:25 +02:00
parent 7d037495be
commit 60c2c2867c
2 changed files with 393 additions and 394 deletions

File diff suppressed because it is too large Load Diff

View File

@ -55,7 +55,8 @@ struct SciWorkaroundEntry {
const char *objectName;
const char *methodName;
const uint16 *localCallSignature;
int index;
int fromIndex;
int toIndex;
SciWorkaroundSolution newValue;
};