aboutsummaryrefslogtreecommitdiff
path: root/engines/mortevielle/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mortevielle/menu.h')
-rw-r--r--engines/mortevielle/menu.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/mortevielle/menu.h b/engines/mortevielle/menu.h
index ccf5bd8954..7f224a3ee5 100644
--- a/engines/mortevielle/menu.h
+++ b/engines/mortevielle/menu.h
@@ -33,10 +33,15 @@
namespace Mortevielle {
+enum {
+ MENU_INVENTORY = 1, MENU_MOVE = 2, MENU_ACTION = 3, MENU_SELF = 4,
+ MENU_DISCUSS = 5, MENU_FILE = 6, MENU_SAVE = 7, MENU_LOAD = 8
+};
+
class Menu {
private:
void util(Common::Point pos);
- void invers(int ix);
+ void invert(int indx);
void menuDown(int ii);
public:
bool _menuActive;
@@ -67,10 +72,5 @@ public:
void unsetSearchMenu();
};
-enum {
- MENU_INVENTORY = 1, MENU_MOVE = 2, MENU_ACTION = 3, MENU_SELF = 4,
- MENU_DISCUSS = 5, MENU_FILE = 6, MENU_SAVE = 7, MENU_LOAD = 8
-};
-
} // End of namespace Mortevielle
#endif