aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/objects.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2015-08-29 21:30:55 +0200
committerTorbjörn Andersson2015-08-29 21:30:55 +0200
commit303bbe75d58b74dac6ef38c7bebf59f72fca42b1 (patch)
tree129261a657130c5ad9cec323f5fabfe865a67558 /engines/sherlock/objects.cpp
parente734bb5078055521e04508ce19c5766b36817300 (diff)
downloadscummvm-rg350-303bbe75d58b74dac6ef38c7bebf59f72fca42b1.tar.gz
scummvm-rg350-303bbe75d58b74dac6ef38c7bebf59f72fca42b1.tar.bz2
scummvm-rg350-303bbe75d58b74dac6ef38c7bebf59f72fca42b1.zip
SHERLOCK: Fix comment typos
Diffstat (limited to 'engines/sherlock/objects.cpp')
-rw-r--r--engines/sherlock/objects.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/objects.cpp b/engines/sherlock/objects.cpp
index 533d2bcc67..b2ffdfbacc 100644
--- a/engines/sherlock/objects.cpp
+++ b/engines/sherlock/objects.cpp
@@ -90,7 +90,7 @@ BaseObject::BaseObject() {
bool BaseObject::hasAborts() const {
int seqNum = _talkSeq;
- // See if the object is in it's regular sequence
+ // See if the object is in its regular sequence
bool startChecking = !seqNum || _type == CHARACTER;
uint idx = 0;
@@ -445,7 +445,7 @@ void BaseObject::setObjSequence(int seq, bool wait) {
// Use the saved start of the sequence to reset the frame
_frameNumber = _startSeq;
} else {
- // For Scalpel, scan backwards from the end of the sequence to find it's start
+ // For Scalpel, scan backwards from the end of the sequence to find its start
do {
--_frameNumber;
} while (_frameNumber > 0 && _sequences[_frameNumber] != 0);