aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/vm.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-06-25 22:34:53 +0000
committerMartin Kiewitz2010-06-25 22:34:53 +0000
commitfc4fa25ec4272f6117ca32e3c3998b15de30eca3 (patch)
treea90598d8d5ad639ba432a6757caeba2215efab88 /engines/sci/engine/vm.h
parentb96c0a1f0797812e45d1ee135d291556f9c60866 (diff)
downloadscummvm-rg350-fc4fa25ec4272f6117ca32e3c3998b15de30eca3.tar.gz
scummvm-rg350-fc4fa25ec4272f6117ca32e3c3998b15de30eca3.tar.bz2
scummvm-rg350-fc4fa25ec4272f6117ca32e3c3998b15de30eca3.zip
SCI: adding capability for detecting export-calls into valgrind-sci, adding workaround for export 1 of script 703 in sq1 (gets called from various objects)
svn-id: r50292
Diffstat (limited to 'engines/sci/engine/vm.h')
-rw-r--r--engines/sci/engine/vm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/vm.h b/engines/sci/engine/vm.h
index 88898cdbba..ed3d5483b6 100644
--- a/engines/sci/engine/vm.h
+++ b/engines/sci/engine/vm.h
@@ -103,6 +103,7 @@ struct ExecStack {
SegmentId local_segment; // local variables etc
Selector selector; // The selector which was used to call or -1 if not applicable
+ int exportId; // The exportId which was called or -1 if not applicable
int origin; // The stack frame position the call was made from, or -1 if it was the initial call
ExecStackType type;