diff options
author | md5 | 2011-03-08 15:24:59 +0200 |
---|---|---|
committer | md5 | 2011-03-08 15:24:59 +0200 |
commit | 92093d267fc17edd0b9f0467c93c08718f959ae4 (patch) | |
tree | 62e7875b56578f2a32978c08e91cec27548a7e4c | |
parent | 0642b30933b464ddffff591ca672345d0ec55103 (diff) | |
download | scummvm-rg350-92093d267fc17edd0b9f0467c93c08718f959ae4.tar.gz scummvm-rg350-92093d267fc17edd0b9f0467c93c08718f959ae4.tar.bz2 scummvm-rg350-92093d267fc17edd0b9f0467c93c08718f959ae4.zip |
SCI: Fixed typos
-rw-r--r-- | engines/sci/engine/gc.cpp | 2 | ||||
-rw-r--r-- | engines/sci/engine/vm_types.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/gc.cpp b/engines/sci/engine/gc.cpp index 1f24e68da7..d205763051 100644 --- a/engines/sci/engine/gc.cpp +++ b/engines/sci/engine/gc.cpp @@ -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 }; diff --git a/engines/sci/engine/vm_types.cpp b/engines/sci/engine/vm_types.cpp index e14c0ca44b..e606fa1f86 100644 --- a/engines/sci/engine/vm_types.cpp +++ b/engines/sci/engine/vm_types.cpp @@ -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); } |