From 6a7688ad103612781e0378e2d22b700eb50cfed2 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 29 Jul 2017 20:30:06 -0400 Subject: TITANIC: Properly fix disappearing cconversation log text --- engines/titanic/support/font.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/titanic/support/font.cpp') diff --git a/engines/titanic/support/font.cpp b/engines/titanic/support/font.cpp index 56f1af4718..91a698e299 100644 --- a/engines/titanic/support/font.cpp +++ b/engines/titanic/support/font.cpp @@ -275,11 +275,11 @@ WriteCharacterResult STFont::writeChar(CVideoSurface *surface, unsigned char c, charRect.left += srcRect->left - destPos.x; destPos.x = srcRect->left; } else { - if ((charRect.width() + destPos.x) > srcRect->right) { + if ((destPos.x + charRect.width()) > srcRect->right) { if (destPos.x > srcRect->right) return WC_OUTSIDE_RIGHT; - charRect.right += srcRect->left - destPos.x; + charRect.right += srcRect->right - destPos.x - charRect.width(); } } -- cgit v1.2.3