aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2010-11-10 00:36:43 +0000
committerFilippos Karapetis2010-11-10 00:36:43 +0000
commitc3fd3e23294784a1588137c124f426445926d816 (patch)
tree891c0e88f189884ec9af552a671085f76a770cd4
parenta74b8ad67f7c334051dce8bdb74a514169f905af (diff)
downloadscummvm-rg350-c3fd3e23294784a1588137c124f426445926d816.tar.gz
scummvm-rg350-c3fd3e23294784a1588137c124f426445926d816.tar.bz2
scummvm-rg350-c3fd3e23294784a1588137c124f426445926d816.zip
SCI: Updated the SCI2.1 kernel function table with the SCI3 changes/additions
svn-id: r54177
-rw-r--r--engines/sci/engine/kernel_tables.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/engines/sci/engine/kernel_tables.h b/engines/sci/engine/kernel_tables.h
index bc4b61096d..c59307b7f9 100644
--- a/engines/sci/engine/kernel_tables.h
+++ b/engines/sci/engine/kernel_tables.h
@@ -981,7 +981,7 @@ static const char *sci21_default_knames[] = {
/*0x49*/ "Font",
/*0x4a*/ "EditText",
/*0x4b*/ "InputText",
- /*0x4c*/ "ScrollWindow",
+ /*0x4c*/ "ScrollWindow", // Dummy in SCI3
/*0x4d*/ "Dummy",
/*0x4e*/ "Dummy",
/*0x4f*/ "Dummy",
@@ -991,7 +991,7 @@ static const char *sci21_default_knames[] = {
/*0x53*/ "MapKeyToDir",
/*0x54*/ "HaveMouse",
/*0x55*/ "SetCursor",
- /*0x56*/ "VibrateMouse",
+ /*0x56*/ "VibrateMouse", // Dummy in SCI3
/*0x57*/ "Dummy",
/*0x58*/ "Dummy",
/*0x59*/ "Dummy",
@@ -1032,7 +1032,7 @@ static const char *sci21_default_knames[] = {
/*0x7c*/ "SetQuitStr",
/*0x7d*/ "GetConfig",
/*0x7e*/ "Table",
- /*0x7f*/ "WinHelp", // Windows only
+ /*0x7f*/ "WinHelp", // Windows only
/*0x80*/ "Dummy",
/*0x81*/ "Dummy",
/*0x82*/ "Dummy",
@@ -1046,7 +1046,7 @@ static const char *sci21_default_knames[] = {
/*0x8a*/ "LoadChunk",
/*0x8b*/ "SetPalStyleRange",
/*0x8c*/ "AddPicAt",
- /*0x8d*/ "Dummy",
+ /*0x8d*/ "MessageBox", // SCI3, was Dummy in SCI2.1
/*0x8e*/ "NewRoom",
/*0x8f*/ "Dummy",
/*0x90*/ "Priority",
@@ -1060,8 +1060,13 @@ static const char *sci21_default_knames[] = {
/*0x98*/ "GetWindowsOption", // Windows only
/*0x99*/ "WinDLL", // Windows only
/*0x9a*/ "Dummy",
- /*0x9b*/ "Dummy",
- /*0x9c*/ "DeletePic"
+ /*0x9b*/ "Minimize", // SCI3, was Dummy in SCI2.1
+ /*0x9c*/ "DeletePic",
+ // == SCI3 only ===============
+ /*0x9d*/ "Dummy",
+ /*0x9e*/ "WebConnect",
+ /*0x9f*/ "Dummy",
+ /*0xa0*/ "PlayDuck"
};
#endif