diff options
author | Paul Gilbert | 2016-11-03 23:04:58 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-11-03 23:04:58 -0400 |
commit | e58dad8bb6f50c160de4465551abbe877b673360 (patch) | |
tree | dc60871532fedef362f0e05b12c7c11cd33d6864 /engines/titanic/support | |
parent | c32be8ebeb45558cf2eb20c199bb06218f55d2fb (diff) | |
download | scummvm-rg350-e58dad8bb6f50c160de4465551abbe877b673360.tar.gz scummvm-rg350-e58dad8bb6f50c160de4465551abbe877b673360.tar.bz2 scummvm-rg350-e58dad8bb6f50c160de4465551abbe877b673360.zip |
TITANIC: Parser fixes for using unrecognised words
Diffstat (limited to 'engines/titanic/support')
-rw-r--r-- | engines/titanic/support/font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/support/font.cpp b/engines/titanic/support/font.cpp index 7bcac9ba08..b91a7ec728 100644 --- a/engines/titanic/support/font.cpp +++ b/engines/titanic/support/font.cpp @@ -90,7 +90,7 @@ int STFont::getTextBounds(const CString &str, int maxWidth, Point *sizeOut) cons strP += 4; } else { if (*strP == ' ') { - // Check fo rline wrapping + // Check for line wrapping checkLineWrap(textSize, maxWidth, strP); } |