aboutsummaryrefslogtreecommitdiff
path: root/engines/mortevielle
diff options
context:
space:
mode:
authorStrangerke2012-02-28 07:59:51 +0100
committerStrangerke2012-04-06 08:22:11 +0200
commitf98a818c363055fbe94e7c3f8d184eba25bff67a (patch)
tree49dfb119eb92ae5eb93e3db6868088928449521c /engines/mortevielle
parent4361f843fdcd545305067daa43e48360eef05539 (diff)
downloadscummvm-rg350-f98a818c363055fbe94e7c3f8d184eba25bff67a.tar.gz
scummvm-rg350-f98a818c363055fbe94e7c3f8d184eba25bff67a.tar.bz2
scummvm-rg350-f98a818c363055fbe94e7c3f8d184eba25bff67a.zip
MORTEVIELLE: Rename menu entry type erroneously named
Diffstat (limited to 'engines/mortevielle')
-rw-r--r--engines/mortevielle/menu.cpp8
-rw-r--r--engines/mortevielle/menu.h2
-rw-r--r--engines/mortevielle/mortevielle.cpp4
3 files changed, 7 insertions, 7 deletions
diff --git a/engines/mortevielle/menu.cpp b/engines/mortevielle/menu.cpp
index fe5581dc48..3edaaaaf21 100644
--- a/engines/mortevielle/menu.cpp
+++ b/engines/mortevielle/menu.cpp
@@ -68,7 +68,7 @@ void Menu::menut(int no, Common::String name) {
case MENU_ACTION:
_actionStringArray[l] = s;
break;
- case MENU_SUB_ACTION:
+ case MENU_SELF:
_selfStringArray[l] = s;
break;
case MENU_DISCUSS:
@@ -101,7 +101,7 @@ void Menu::disableMenuItem(int no) {
case MENU_ACTION:
_actionStringArray[l].setChar('*', 0);
break;
- case MENU_SUB_ACTION:
+ case MENU_SELF:
_selfStringArray[l].setChar('*', 0);
break;
case MENU_DISCUSS:
@@ -132,7 +132,7 @@ void Menu::enableMenuItem(int no) {
case MENU_ACTION:
_actionStringArray[l].setChar(' ', 0);
break;
- case MENU_SUB_ACTION:
+ case MENU_SELF:
_selfStringArray[l].setChar(' ', 0);
// The original sets two times the same value. Skipped
// _selfStringArray[l].setChar(' ', 0);
@@ -422,7 +422,7 @@ void Menu::mdn() {
else if (x < 172 * res)
ix = MENU_ACTION;
else if (x < 220 * res)
- ix = MENU_SUB_ACTION;
+ ix = MENU_SELF;
else if (x < 268 * res)
ix = MENU_DISCUSS;
else
diff --git a/engines/mortevielle/menu.h b/engines/mortevielle/menu.h
index 67fc8bbf64..f6e3ea5a9c 100644
--- a/engines/mortevielle/menu.h
+++ b/engines/mortevielle/menu.h
@@ -60,7 +60,7 @@ public:
};
enum {
- MENU_INVENTORY = 1, MENU_MOVE = 2, MENU_ACTION = 3, MENU_SUB_ACTION = 4,
+ MENU_INVENTORY = 1, MENU_MOVE = 2, MENU_ACTION = 3, MENU_SELF = 4,
MENU_DISCUSS = 5, MENU_FILE = 6, MENU_SAVE = 7, MENU_LOAD = 8
};
diff --git a/engines/mortevielle/mortevielle.cpp b/engines/mortevielle/mortevielle.cpp
index 9c4df1cf9d..c9ea556c80 100644
--- a/engines/mortevielle/mortevielle.cpp
+++ b/engines/mortevielle/mortevielle.cpp
@@ -588,7 +588,7 @@ void MortevielleEngine::handleAction() {
temps = Alert::show(_hintPctMessage, 1);
return;
} else if (inkey == '\77') {
- if ((mnumo != OPCODE_NONE) && ((msg[3] == MENU_ACTION) || (msg[3] == MENU_SUB_ACTION))) {
+ if ((mnumo != OPCODE_NONE) && ((msg[3] == MENU_ACTION) || (msg[3] == MENU_SELF))) {
msg[4] = mnumo;
ecr3(g_vm->getEngineString(S_IDEM));
} else
@@ -611,7 +611,7 @@ void MortevielleEngine::handleAction() {
num = 0;
} else {
mnumo = msg[3];
- if ((msg[3] == MENU_ACTION) || (msg[3] == MENU_SUB_ACTION))
+ if ((msg[3] == MENU_ACTION) || (msg[3] == MENU_SELF))
mnumo = msg[4];
if (! anyone) {
if ((fouil) || (obpart)) {