diff options
author | Paul Gilbert | 2012-03-05 22:35:32 +1100 |
---|---|---|
committer | Strangerke | 2012-04-06 08:22:46 +0200 |
commit | 203dcdaf4afdf42024fa013a1375a8865bf34875 (patch) | |
tree | 7cb8eb357b260de6b41be7f1a79fd0b14792a26c /engines/mortevielle | |
parent | ec71b9bfd6d557888ccb63cb0b58291929169267 (diff) | |
download | scummvm-rg350-203dcdaf4afdf42024fa013a1375a8865bf34875.tar.gz scummvm-rg350-203dcdaf4afdf42024fa013a1375a8865bf34875.tar.bz2 scummvm-rg350-203dcdaf4afdf42024fa013a1375a8865bf34875.zip |
MORTEVIELLE: Added extra width to the Self menu for the English version
Diffstat (limited to 'engines/mortevielle')
-rw-r--r-- | engines/mortevielle/menu.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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))); |