diff options
-rw-r--r-- | engines/sherlock/scalpel/scalpel_user_interface.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sherlock/scalpel/scalpel_user_interface.h b/engines/sherlock/scalpel/scalpel_user_interface.h index 262cd291ed..dbc3945582 100644 --- a/engines/sherlock/scalpel/scalpel_user_interface.h +++ b/engines/sherlock/scalpel/scalpel_user_interface.h @@ -44,12 +44,9 @@ extern const char *const PRESS_KEY_TO_CONTINUE; class Settings; class ScalpelUserInterface: public UserInterface { - friend class Sherlock::Inventory; friend class Settings; friend class Talk; private: - ImageFile *_controlPanel; - ImageFile *_controls; char _keyPress; int _lookHelp; int _bgFound, _oldBgFound; @@ -63,7 +60,6 @@ private: Common::String _cAnimStr; Common::String _descStr; int _find; - int _oldUse; private: /** * Draws the image for a user interface button in the down/pressed state. @@ -159,6 +155,10 @@ private: */ void printObjectDesc(const Common::String &str, bool firstTime); public: + ImageFile *_controlPanel; + ImageFile *_controls; + int _oldUse; +public: ScalpelUserInterface(SherlockEngine *vm); virtual ~ScalpelUserInterface(); |