aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/kyra/sequences_lok.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/sequences_lok.cpp b/engines/kyra/sequences_lok.cpp
index 2de68f25ac..35f434698b 100644
--- a/engines/kyra/sequences_lok.cpp
+++ b/engines/kyra/sequences_lok.cpp
@@ -1135,6 +1135,7 @@ void KyraEngine_LoK::seq_playEnding() {
_screen->showMouse();
if (_flags.platform == Common::kPlatformAmiga) {
+ _screen->_charWidth = -2;
_screen->setCurPage(2);
_screen->getPalette(2).clear();
@@ -1325,7 +1326,7 @@ void KyraEngine_LoK::seq_playCreditsAmiga() {
const char *theEnd = "THE END";
- const int width = _screen->getTextWidth(theEnd);
+ const int width = _screen->getTextWidth(theEnd) + 1;
int x = (320 - width) / 2 + 1;
_screen->copyRegion(x, 8, x, 8, width, 56, 0, 2, Screen::CR_NO_P_CHECK);