aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kernel.h
diff options
context:
space:
mode:
authorMax Horn2010-06-17 23:13:54 +0000
committerMax Horn2010-06-17 23:13:54 +0000
commit78cd1aa145fb454de67444ef58bed6381ce2396c (patch)
tree73a0d16e1c3f14cb6ade534bc3555f3f424ddb67 /engines/sci/engine/kernel.h
parentcfcbdf86569dac5856d364316caa5b0a57713fd7 (diff)
downloadscummvm-rg350-78cd1aa145fb454de67444ef58bed6381ce2396c.tar.gz
scummvm-rg350-78cd1aa145fb454de67444ef58bed6381ce2396c.tar.bz2
scummvm-rg350-78cd1aa145fb454de67444ef58bed6381ce2396c.zip
SCI: Remove hack related to compiled kernel signatures.
Also change some things to comply to our code formatting conventions. svn-id: r49967
Diffstat (limited to 'engines/sci/engine/kernel.h')
-rw-r--r--engines/sci/engine/kernel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/kernel.h b/engines/sci/engine/kernel.h
index f17e751709..11bc76348d 100644
--- a/engines/sci/engine/kernel.h
+++ b/engines/sci/engine/kernel.h
@@ -115,9 +115,9 @@ enum {
typedef reg_t KernelFunc(EngineState *s, int argc, reg_t *argv);
struct KernelFuncWithSignature {
- KernelFunc *fun; /**< The actual function */
- const char *signature; /**< KernelFunc signature */
- Common::String orig_name; /**< Original name, in case we couldn't map it */
+ KernelFunc *func; /**< The actual function */
+ char *signature; /**< KernelFunc signature */
+ Common::String origName; /**< Original name, in case we couldn't map it */
bool isDummy;
};