Skip to content

Commit

Permalink
SCI: Update some kernel table related comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Jul 3, 2012
1 parent d757b5b commit a0ad504
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion engines/sci/engine/kernel.cpp
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions engines/sci/engine/kernel_tables.h
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit a0ad504

Please sign in to comment.