From 203dcdaf4afdf42024fa013a1375a8865bf34875 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 5 Mar 2012 22:35:32 +1100 Subject: MORTEVIELLE: Added extra width to the Self menu for the English version --- engines/mortevielle/menu.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engines/mortevielle/menu.cpp b/engines/mortevielle/menu.cpp index 3abe06aa11..b60c70b4af 100644 --- a/engines/mortevielle/menu.cpp +++ b/engines/mortevielle/menu.cpp @@ -295,6 +295,10 @@ void Menu::menuDown(int ii) { else cx = 6; xcc = xco + (g_menuConstants[ii - 1][2] * cx) + 6; + if ((ii == 4) && (g_vm->getLanguage() == Common::EN_ANY)) + // Extra width needed for Self menu in English version + xcc = 435; + g_vm->_screenSurface.fillRect(15, Common::Rect(xco, 12, xcc, 10 + (g_menuConstants[ii - 1][1] << 1))); g_vm->_screenSurface.fillRect(0, Common::Rect(xcc, 12, xcc + 4, 10 + (g_menuConstants[ii - 1][1] << 1))); g_vm->_screenSurface.fillRect(0, Common::Rect(xco, 8 + (g_menuConstants[ii - 1][1] << 1), xcc + 4, 12 + (g_menuConstants[ii - 1][1] << 1))); -- cgit v1.2.3