From 3efecb3afcc5043703c4ab28bac5406f351a0794 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Fri, 24 Jul 2009 05:20:44 +0000 Subject: Fix cursor position, when entering a save game name in HE games. svn-id: r42685 --- engines/scumm/string.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp index f00f4ff33b..e99bea87de 100644 --- a/engines/scumm/string.cpp +++ b/engines/scumm/string.cpp @@ -995,6 +995,11 @@ void ScummEngine::drawString(int a, const byte *msg) { } _string[a].xpos = _charset->_str.right; + + if (_game.heversion >= 60) { + _string[a]._default.xpos = _string[a].xpos; + _string[a]._default.ypos = _string[a].ypos; + } } int ScummEngine::convertMessageToString(const byte *msg, byte *dst, int dstSize) { -- cgit v1.2.3