diff options
-rw-r--r-- | engines/sherlock/scalpel/darts.cpp | 2 | ||||
-rw-r--r-- | engines/sherlock/talk.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/scalpel/darts.cpp b/engines/sherlock/scalpel/darts.cpp index de93621e2f..b567d58ab4 100644 --- a/engines/sherlock/scalpel/darts.cpp +++ b/engines/sherlock/scalpel/darts.cpp @@ -347,7 +347,7 @@ void Darts::drawDartThrow(const Common::Point &pt) { screen._backBuffer1.transBlitFrom(frame, drawPos); screen.slamArea(drawPos.x, drawPos.y, frame._width, frame._height); - // Handle erasing old dart strs + // Handle erasing old dart frame area if (!oldDrawBounds.isEmpty()) screen.slamRect(oldDrawBounds); diff --git a/engines/sherlock/talk.cpp b/engines/sherlock/talk.cpp index bd4e8c2e78..5fbf7cc185 100644 --- a/engines/sherlock/talk.cpp +++ b/engines/sherlock/talk.cpp @@ -1435,7 +1435,7 @@ void Talk::doScript(const Common::String &script) { yp += 9; } - // Find amound of text that will fit on the line + // Find amount of text that will fit on the line int width = 0, idx = 0; do { width += screen.charWidth(str[idx]); |