aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorMatthew Hoops2010-02-07 03:00:52 +0000
committerMatthew Hoops2010-02-07 03:00:52 +0000
commit71c222e340a11c999c0fcfc7536bd43c60aa01be (patch)
treef2daaacaaa8afa2283a2a847c6147fb685ee995b /engines/sci
parentecd8e6f7d1f8071e22b51a4387a62c352d1e211f (diff)
downloadscummvm-rg350-71c222e340a11c999c0fcfc7536bd43c60aa01be.tar.gz
scummvm-rg350-71c222e340a11c999c0fcfc7536bd43c60aa01be.tar.bz2
scummvm-rg350-71c222e340a11c999c0fcfc7536bd43c60aa01be.zip
Oops, correct a comment.
svn-id: r47949
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/engine/features.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/features.cpp b/engines/sci/engine/features.cpp
index 02443c1eac..4ada9fbeea 100644
--- a/engines/sci/engine/features.cpp
+++ b/engines/sci/engine/features.cpp
@@ -325,7 +325,7 @@ SciVersion GameFeatures::detectSetCursorType() {
// SCI1.1 games always use cursor views
_setCursorType = SCI_VERSION_1_1;
} else { // SCI1 late game, detect cursor semantics
- // If the Cursor object exists, we're using the SCI0 early kSetCursor semantics.
+ // If the Cursor object doesn't exist, we're using the SCI0 early kSetCursor semantics.
if (_segMan->findObjectByName("Cursor") == NULL_REG) {
_setCursorType = SCI_VERSION_0_EARLY;
debugC(1, kDebugLevelGraphics, "Detected SetCursor type: %s", getSciVersionDesc(_setCursorType).c_str());