diff options
-rw-r--r-- | engines/supernova/state.cpp | 1 | ||||
-rw-r--r-- | engines/supernova/state.h | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/engines/supernova/state.cpp b/engines/supernova/state.cpp index 0b4b78fddd..f82d96118f 100644 --- a/engines/supernova/state.cpp +++ b/engines/supernova/state.cpp @@ -72,7 +72,6 @@ Object *Inventory::get(ObjectID id) const { GuiElement::GuiElement() : _text("") , _isHighlighted(false) - , _isVisible(true) , _bgColorNormal(kColorWhite25) , _bgColorHighlighted(kColorWhite44) , _bgColor(kColorWhite25) diff --git a/engines/supernova/state.h b/engines/supernova/state.h index 14155d580f..92c9a216c0 100644 --- a/engines/supernova/state.h +++ b/engines/supernova/state.h @@ -83,10 +83,6 @@ public: void setColor(int bgColor, int textColor, int bgColorHighlighted, int textColorHightlighted); void setHighlight(bool isHighlighted); -// virtual void onMouseOver() {} -// virtual void onMouseOut() {} -// virtual void onMouseClick() {} - Common::Point _textPosition; char _text[128]; int _bgColor; @@ -96,7 +92,6 @@ public: int _textColorNormal; int _textColorHighlighted; bool _isHighlighted; - bool _isVisible; }; class GameManager { |