aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kernel.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-10-30 22:55:35 +0000
committerFilippos Karapetis2009-10-30 22:55:35 +0000
commit86cafd561f8777fc06913dda10e3fe561ecf137e (patch)
tree263cabd62b8526cfd6245946f6ce298edadb0cfa /engines/sci/engine/kernel.cpp
parent1c158c52a1217225cfa4aadb289a537287eec6a2 (diff)
downloadscummvm-rg350-86cafd561f8777fc06913dda10e3fe561ecf137e.tar.gz
scummvm-rg350-86cafd561f8777fc06913dda10e3fe561ecf137e.tar.bz2
scummvm-rg350-86cafd561f8777fc06913dda10e3fe561ecf137e.zip
Some work on the kPortrait kernel function, used to show hires character portraits in the Windows CD version of KQ6
svn-id: r45552
Diffstat (limited to 'engines/sci/engine/kernel.cpp')
-rw-r--r--engines/sci/engine/kernel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp
index a7c6527bc4..9766043b8e 100644
--- a/engines/sci/engine/kernel.cpp
+++ b/engines/sci/engine/kernel.cpp
@@ -334,6 +334,7 @@ SciKernelFunction kfunct_mappers[] = {
DEFUN("Platform", kPlatform, "i*"),
DEFUN("TextColors", kTextColors, ".*"),
DEFUN("TextFonts", kTextFonts, ".*"),
+ DEFUN("Portrait", kPortrait, ".*"),
// its a stub, but its needed for Pharkas to work
DEFUN("PalVary", kPalVary, "ii*"),
@@ -702,8 +703,7 @@ void Kernel::setDefaultKernelNames() {
break;
case SCI_VERSION_1_1:
- // KQ6CD calls unimplemented function 0x26
- _kernelNames[0x26] = "Dummy";
+ _kernelNames[0x26] = "Portrait";
_kernelNames[0x71] = "PalVary";
_kernelNames[0x7c] = "Message";
break;