SCI: Fixed typos

This commit is contained in:
md5 2011-03-08 15:24:59 +02:00
parent 0642b30933
commit 92093d267f
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ const char *segmentTypeNames[] = {
"nodes", // 7
"hunk", // 8
"dynmem", // 9
"obsolete", // 10: obsolete system strings
"obsolete", // 10: obsolete string fragments
"array", // 11: SCI32 arrays
"string" // 12: SCI32 strings
};

View File

@ -220,7 +220,7 @@ bool reg_t::pointerComparisonWithInteger(const reg_t right) const {
// Hoyle 3, Pachisi, when any opponent is about to talk
// SQ1, room 28, when throwing water at the Orat
// SQ1, room 58, when giving the ID card to the robot
// SQ4 CD, at the first game screen, when the narrator is about to talk
// SQ4 CD, at the first game screen, when the narrator is about to speak
return (isPointer() && right.isNumber() && right.offset <= 2000 && getSciVersion() <= SCI_VERSION_1_1);
}