aboutsummaryrefslogtreecommitdiff
path: root/engines/touche/touche.h
diff options
context:
space:
mode:
authorGregory Montoir2006-11-23 22:25:04 +0000
committerGregory Montoir2006-11-23 22:25:04 +0000
commitb373ab1a38bf4de8da1eda5af4d7abea50e1ea80 (patch)
tree235463d63540dcad52423e4384477f8b52a6a406 /engines/touche/touche.h
parentd47d545631fb37528ccad4c993d599c799591dc4 (diff)
downloadscummvm-rg350-b373ab1a38bf4de8da1eda5af4d7abea50e1ea80.tar.gz
scummvm-rg350-b373ab1a38bf4de8da1eda5af4d7abea50e1ea80.tar.bz2
scummvm-rg350-b373ab1a38bf4de8da1eda5af4d7abea50e1ea80.zip
minor cleanup, _spritesTable is no more static
svn-id: r24777
Diffstat (limited to 'engines/touche/touche.h')
-rw-r--r--engines/touche/touche.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/touche/touche.h b/engines/touche/touche.h
index 9284374b19..b7caa3723c 100644
--- a/engines/touche/touche.h
+++ b/engines/touche/touche.h
@@ -616,6 +616,7 @@ protected:
int _newSoundDelay;
int _newSoundPriority;
int _playSoundCounter;
+ bool _speechPlaying;
Audio::SoundHandle _sfxHandle;
Audio::SoundHandle _speechHandle;
@@ -701,12 +702,12 @@ protected:
uint8 *_mouseData;
uint8 *_iconData;
+ SpriteData _spritesTable[NUM_SPRITES];
SequenceEntry _sequenceEntryTable[NUM_SEQUENCES];
int _currentBitmapWidth;
int _currentBitmapHeight;
int _currentImageWidth;
int _currentImageHeight;
- bool _speechPlaying;
int _roomWidth;
uint8 *_programTextDataPtr;
@@ -732,7 +733,6 @@ protected:
Common::Rect _dirtyRectsTable[NUM_DIRTY_RECTS];
int _dirtyRectsTableCount;
- static SpriteData _spritesTable[NUM_SPRITES];
static const uint8 _directionsTable[NUM_DIRECTIONS];
};