diff options
-rw-r--r-- | engines/supernova/supernova.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/supernova/supernova.cpp b/engines/supernova/supernova.cpp index e5a943f9b5..6774ac7c2f 100644 --- a/engines/supernova/supernova.cpp +++ b/engines/supernova/supernova.cpp @@ -389,15 +389,15 @@ void SupernovaEngine::renderMessage(const char *text, MessagePosition position) switch (position) { case kMessageNormal: - x = rowWidthMax / 2 - 160; + x = 160 - rowWidthMax / 2; textColor = COL_MELD; break; case kMessageTop: - x = rowWidthMax / 2 - 160; + x = 160 - rowWidthMax / 2; textColor = kColorLightYellow; break; case kMessageCenter: - x = rowWidthMax / 2 - 160; + x = 160 - rowWidthMax / 2; textColor = kColorLightRed; break; case kMessageLeft: |