diff options
author | Matthew Hoops | 2010-02-07 03:00:52 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-02-07 03:00:52 +0000 |
commit | 71c222e340a11c999c0fcfc7536bd43c60aa01be (patch) | |
tree | f2daaacaaa8afa2283a2a847c6147fb685ee995b | |
parent | ecd8e6f7d1f8071e22b51a4387a62c352d1e211f (diff) | |
download | scummvm-rg350-71c222e340a11c999c0fcfc7536bd43c60aa01be.tar.gz scummvm-rg350-71c222e340a11c999c0fcfc7536bd43c60aa01be.tar.bz2 scummvm-rg350-71c222e340a11c999c0fcfc7536bd43c60aa01be.zip |
Oops, correct a comment.
svn-id: r47949
-rw-r--r-- | engines/sci/engine/features.cpp | 2 |
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()); |