aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kernel.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-07-29 17:22:38 +0000
committerMartin Kiewitz2010-07-29 17:22:38 +0000
commit41ed8b438944025628b2e5a002ea3815b694fd22 (patch)
tree95c09d4ccc11f004ae54f59717d59eb7889728c6 /engines/sci/engine/kernel.h
parent148c830d769aaf4fd4e08e46284d419ff0c93f18 (diff)
downloadscummvm-rg350-41ed8b438944025628b2e5a002ea3815b694fd22.tar.gz
scummvm-rg350-41ed8b438944025628b2e5a002ea3815b694fd22.tar.bz2
scummvm-rg350-41ed8b438944025628b2e5a002ea3815b694fd22.zip
SCI: some subfunction support for logkernel
svn-id: r51475
Diffstat (limited to 'engines/sci/engine/kernel.h')
-rw-r--r--engines/sci/engine/kernel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel.h b/engines/sci/engine/kernel.h
index 227eb19c01..285e746349 100644
--- a/engines/sci/engine/kernel.h
+++ b/engines/sci/engine/kernel.h
@@ -126,6 +126,7 @@ struct KernelSubFunction {
const char *name;
uint16 *signature;
const SciWorkaroundEntry *workarounds;
+ bool debugLogging;
};
struct KernelFunction {
@@ -133,7 +134,7 @@ struct KernelFunction {
const char *name;
uint16 *signature;
const SciWorkaroundEntry *workarounds;
- const KernelSubFunction *subFunctions;
+ KernelSubFunction *subFunctions;
uint16 subFunctionCount;
bool debugLogging;
};