aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2012-03-28 08:05:12 +0200
committerStrangerke2012-04-06 08:23:59 +0200
commit64ef9378a2bd4e9490843695db0da8a7a4bb869c (patch)
tree7743c9c080d0438a726b08f5c0000a4c260e0b6b
parent76bf72ce695ebaf465025cdbd2a5f4e37dfce681 (diff)
downloadscummvm-rg350-64ef9378a2bd4e9490843695db0da8a7a4bb869c.tar.gz
scummvm-rg350-64ef9378a2bd4e9490843695db0da8a7a4bb869c.tar.bz2
scummvm-rg350-64ef9378a2bd4e9490843695db0da8a7a4bb869c.zip
MORTEVIELLE: Enlarge Inventory menu display to match Depl menu.
-rw-r--r--engines/mortevielle/menu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mortevielle/menu.cpp b/engines/mortevielle/menu.cpp
index 4616d1387c..a9fea17fcb 100644
--- a/engines/mortevielle/menu.cpp
+++ b/engines/mortevielle/menu.cpp
@@ -37,7 +37,7 @@
namespace Mortevielle {
const byte _menuConstants[8][4] = {
- { 7, 37, 22, 8},
+ { 7, 37, 23, 8},
{19, 33, 23, 7},
{31, 89, 10, 21},
{43, 25, 11, 5},
@@ -56,7 +56,7 @@ void Menu::setText(int menuId, Common::String name) {
byte l = lo(menuId);
Common::String s = name;
- while (s.size() < 20)
+ while (s.size() < 22)
s += ' ';
switch (h) {