SHERLOCK: Correct some comments

This commit is contained in:
Paul Gilbert 2015-05-21 19:00:22 -04:00
parent feff241ef7
commit 87fe6a14a0
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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]);