aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kernel.h
diff options
context:
space:
mode:
authorFilippos Karapetis2010-08-22 16:30:33 +0000
committerFilippos Karapetis2010-08-22 16:30:33 +0000
commit68f3cc944cbdcf6f5997700f996971087937a72e (patch)
treee36792c00172c2fe77397e87104c00f503a31c55 /engines/sci/engine/kernel.h
parentb5cb6b7c98a89d0ae23067c01e6a5325a9349b2d (diff)
downloadscummvm-rg350-68f3cc944cbdcf6f5997700f996971087937a72e.tar.gz
scummvm-rg350-68f3cc944cbdcf6f5997700f996971087937a72e.tar.bz2
scummvm-rg350-68f3cc944cbdcf6f5997700f996971087937a72e.zip
SCI: Reimplemented the kShow kernel command, used by the inbuilt SCI debugger. There is no real need to implement kernel debug commands, but since this one maps almost directly to our own "show" debug command, it has been reimplemented (was removed in rev #45310). Normally, there is no real need to implement kernel functions for debug functionality, since there are advanced tools for this purpose nowadays (plus, ScummVM's debugger). Fixes bug #3050616 - "QFG1 EGA: priority/control/view functions crash, debug mode"
svn-id: r52281
Diffstat (limited to 'engines/sci/engine/kernel.h')
-rw-r--r--engines/sci/engine/kernel.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/kernel.h b/engines/sci/engine/kernel.h
index b6247b46f1..dedc836b32 100644
--- a/engines/sci/engine/kernel.h
+++ b/engines/sci/engine/kernel.h
@@ -419,6 +419,7 @@ reg_t kStrSplit(EngineState *s, int argc, reg_t *argv);
reg_t kPlatform(EngineState *s, int argc, reg_t *argv);
reg_t kTextColors(EngineState *s, int argc, reg_t *argv);
reg_t kTextFonts(EngineState *s, int argc, reg_t *argv);
+reg_t kShow(EngineState *s, int argc, reg_t *argv);
reg_t kDummy(EngineState *s, int argc, reg_t *argv);
reg_t kEmpty(EngineState *s, int argc, reg_t *argv);
reg_t kStub(EngineState *s, int argc, reg_t *argv);