MISC: Remove some unused private member variables

This commit is contained in:
Max Horn 2015-07-19 17:09:43 +02:00
parent ac2c01880e
commit 856475067a
5 changed files with 0 additions and 9 deletions

View File

@ -171,9 +171,6 @@ private:
bool _isOpen;
// points to a MIDI channel for each of the new voice channels
byte _voiceChannelMapping[AGOS_ADLIB_VOICES_COUNT];
// stores information about all FM voice channels
ChannelEntry _channels[AGOS_ADLIB_VOICES_COUNT];

View File

@ -269,7 +269,6 @@ public:
bool execute();
private:
uint32 _animationKey;
uint32 _controlKey;
uint32 _x1;
uint32 _y1;

View File

@ -43,7 +43,6 @@ InputControl::InputControl(ZVision *engine, uint32 key, Common::SeekableReadStre
_nextTabstop(0),
_focused(false),
_textChanged(false),
_cursorOffset(0),
_enterPressed(false),
_readOnly(false),
_txtWidth(0),

View File

@ -51,15 +51,12 @@ private:
Common::String _currentInputText;
bool _textChanged;
uint _cursorOffset;
bool _enterPressed;
bool _readOnly;
int16 _txtWidth;
int16 _maxTxtWidth;
Video::VideoDecoder *_animation;
int32 _frameDelay;
int16 _frame;
public:
void focus() {

View File

@ -91,7 +91,6 @@ private:
byte *_ditherPalette;
bool _dirtyPalette;
byte *_rgbLookup;
byte *_colorMap;
DitherType _ditherType;