aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/menusystem.h
diff options
context:
space:
mode:
authorEric Fry2018-04-27 17:48:55 +1000
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commita36cd2e39fce85e5cc1024322767284ba9b8e3b4 (patch)
tree50b71ed75459fe07584909a80e9264b3dc1f3e55 /engines/illusions/menusystem.h
parent8e462f313fa195ce532a7a684d17a487cbdd4613 (diff)
downloadscummvm-rg350-a36cd2e39fce85e5cc1024322767284ba9b8e3b4.tar.gz
scummvm-rg350-a36cd2e39fce85e5cc1024322767284ba9b8e3b4.tar.bz2
scummvm-rg350-a36cd2e39fce85e5cc1024322767284ba9b8e3b4.zip
ILLUSIONS: Name menu border color variables to add readability
Fix menu hover color layer position.
Diffstat (limited to 'engines/illusions/menusystem.h')
-rw-r--r--engines/illusions/menusystem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/illusions/menusystem.h b/engines/illusions/menusystem.h
index a7ef083f65..d9961f82d5 100644
--- a/engines/illusions/menusystem.h
+++ b/engines/illusions/menusystem.h
@@ -54,7 +54,7 @@ protected:
class BaseMenu {
public:
- BaseMenu(BaseMenuSystem *menuSystem, uint32 fontId, byte field8, byte fieldA, byte textColor, byte fieldE,
+ BaseMenu(BaseMenuSystem *menuSystem, uint32 fontId, byte backgroundColor, byte borderColor, byte textColor, byte fieldE,
uint defaultMenuItemIndex);
virtual ~BaseMenu();
void addText(const Common::String text);
@@ -68,7 +68,7 @@ public://protected://TODO
typedef Common::Array<MenuItem*> MenuItems;
BaseMenuSystem *_menuSystem;
uint32 _fontId;
- byte _field8, _fieldA, _textColor, _fieldE;
+ byte _backgroundColor, _borderColor, _textColor, _fieldE;
uint _field2C18;
uint _defaultMenuItemIndex;
Common::Array<Common::String> _text;