SCI: Update some kernel table related comments

This commit is contained in:
Filippos Karapetis 2012-07-04 01:06:58 +03:00
parent d757b5b94a
commit a0ad504059
2 changed files with 3 additions and 3 deletions

View File

@ -837,7 +837,7 @@ void Kernel::loadKernelNames(GameFeatures *features) {
case SCI_VERSION_2_1:
if (features->detectSci21KernelType() == SCI_VERSION_2) {
// Some late SCI2.1 games use a modified SCI2 kernel table instead of
// Some early SCI2.1 games use a modified SCI2 kernel table instead of
// the SCI2.1 kernel table. We detect which version to use based on
// how kDoSound is called from Sound::play().
// Known games that use this:

View File

@ -828,7 +828,7 @@ static const char *const sci2_default_knames[] = {
/*0x20*/ "AddMagnify",
/*0x21*/ "DeleteMagnify",
/*0x22*/ "IsHiRes",
/*0x23*/ "Graph",
/*0x23*/ "Graph", // Robot in early SCI2.1 games with a SCI2 kernel table
/*0x24*/ "InvertRect", // only in SCI2, not used in any SCI2 game
/*0x25*/ "TextSize",
/*0x26*/ "Message",
@ -839,7 +839,7 @@ static const char *const sci2_default_knames[] = {
/*0x2b*/ "EditText",
/*0x2c*/ "InputText", // unused function
/*0x2d*/ "CreateTextBitmap",
/*0x2e*/ "DisposeTextBitmap",
/*0x2e*/ "DisposeTextBitmap", // Priority in early SCI2.1 games with a SCI2 kernel table
/*0x2f*/ "GetEvent",
/*0x30*/ "GlobalToLocal",
/*0x31*/ "LocalToGlobal",