aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2009-08-25 23:39:06 +0000
committerFilippos Karapetis2009-08-25 23:39:06 +0000
commitc212b5ad1d74abc0336edfd45db59dd2fe3f778f (patch)
treef621b6ad06a0a3f6e170115d9100da732be5dd9d /engines
parentc3db0d3f2a8aaaca2b86bd8fe20cd216fc308bcf (diff)
downloadscummvm-rg350-c212b5ad1d74abc0336edfd45db59dd2fe3f778f.tar.gz
scummvm-rg350-c212b5ad1d74abc0336edfd45db59dd2fe3f778f.tar.bz2
scummvm-rg350-c212b5ad1d74abc0336edfd45db59dd2fe3f778f.zip
Disabled the signature checks for kNewWindow and kGetEvent, which are different in Mac versions. At least, Mac versions should start now
svn-id: r43747
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/kernel.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp
index be744aac3c..c0d8045899 100644
--- a/engines/sci/engine/kernel.cpp
+++ b/engines/sci/engine/kernel.cpp
@@ -205,7 +205,9 @@ SciKernelFunction kfunct_mappers[] = {
/*10*/ DEFUN("CelHigh", kCelHigh, "iOiOi"),
/*11*/ DEFUN("DrawCel", kDrawCel, "iiiiii*"),
/*12*/ DEFUN("AddToPic", kAddToPic, "Il*"),
- /*13*/ DEFUN("NewWindow", kNewWindow, "iiiiZRi*"),
+ // FIXME: signature check removed (set to .*) as kNewWindow is different in Mac versions
+ /*13*/ DEFUN("NewWindow", kNewWindow, "*."),
+ ///*13*/ DEFUN("NewWindow", kNewWindow, "iiiiZRi*"),
/*14*/ DEFUN("GetPort", kGetPort, ""),
/*15*/ DEFUN("SetPort", kSetPort, "ii*"),
/*16*/ DEFUN("DisposeWindow", kDisposeWindow, "ii*"),
@@ -214,7 +216,9 @@ SciKernelFunction kfunct_mappers[] = {
/*19*/ DEFUN("EditControl", kEditControl, "ZoZo"),
/*1a*/ DEFUN("TextSize", kTextSize, "rZrii*r*"),
/*1b*/ DEFUN("Display", kDisplay, ".*"),
- /*1c*/ DEFUN("GetEvent", kGetEvent, "io"),
+ // FIXME: signature check removed (set to .*) as kGetEvent is different in Mac versions
+ /*1c*/ DEFUN("GetEvent", kGetEvent, ".*"),
+ ///*1c*/ DEFUN("GetEvent", kGetEvent, "io"),
/*1d*/ DEFUN("GlobalToLocal", kGlobalToLocal, "o"),
/*1e*/ DEFUN("LocalToGlobal", kLocalToGlobal, "o"),
/*1f*/ DEFUN("MapKeyToDir", kMapKeyToDir, "o"),