mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-24 13:13:58 +00:00
Add the minor differences of SCI3 to the SCI2.1 kernel table.
svn-id: r43763
This commit is contained in:
parent
2ceafbae77
commit
5d83522e75
@ -826,10 +826,10 @@ bool Kernel::loadKernelNames() {
|
||||
_kernelNames.clear();
|
||||
|
||||
#ifdef ENABLE_SCI32
|
||||
if (_resourceManager->sciVersion() == SCI_VERSION_2)
|
||||
setKernelNamesSci2();
|
||||
else if (_resourceManager->sciVersion() == SCI_VERSION_2_1)
|
||||
if (_resourceManager->sciVersion() >= SCI_VERSION_2_1)
|
||||
setKernelNamesSci21();
|
||||
else if (_resourceManager->sciVersion() == SCI_VERSION_2)
|
||||
setKernelNamesSci2();
|
||||
else
|
||||
#endif
|
||||
setDefaultKernelNames();
|
||||
|
@ -258,7 +258,7 @@ static const char *sci21_default_knames[] = {
|
||||
/*0x53*/ "MapKeyToDir",
|
||||
/*0x54*/ "HaveMouse",
|
||||
/*0x55*/ "SetCursor",
|
||||
/*0x56*/ "VibrateMouse",
|
||||
/*0x56*/ "VibrateMouse", // NOTE: Not in SCI3, instead replaced by Dummy.
|
||||
/*0x57*/ "Dummy",
|
||||
/*0x58*/ "Dummy",
|
||||
/*0x59*/ "Dummy",
|
||||
@ -325,7 +325,12 @@ static const char *sci21_default_knames[] = {
|
||||
/*0x96*/ "Dummy",
|
||||
/*0x97*/ "Dummy",
|
||||
/*0x98*/ "Dummy",
|
||||
/*0x99*/ "Dummy"
|
||||
/*0x99*/ "Dummy",
|
||||
|
||||
// SCI3
|
||||
/*0x9a*/ "Dummy",
|
||||
/*0x9b*/ "Dummy",
|
||||
/*0x9c*/ "DeletePic"
|
||||
};
|
||||
|
||||
void Kernel::setKernelNamesSci2() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user