diff options
| author | Paul Gilbert | 2015-08-15 07:00:23 -0400 | 
|---|---|---|
| committer | Paul Gilbert | 2015-08-15 07:00:23 -0400 | 
| commit | 2b19dba460a90d5081948785cdd56cf46554968b (patch) | |
| tree | f816b8dc59719f36b88051f03d03bbc109d15d83 /engines/sherlock/objects.h | |
| parent | 23aba271ff54fff1abf8c4d5680961954762ca29 (diff) | |
| download | scummvm-rg350-2b19dba460a90d5081948785cdd56cf46554968b.tar.gz scummvm-rg350-2b19dba460a90d5081948785cdd56cf46554968b.tar.bz2 scummvm-rg350-2b19dba460a90d5081948785cdd56cf46554968b.zip  | |
SHERLOCK: RT: Fix resetting sprite sequences
Diffstat (limited to 'engines/sherlock/objects.h')
| -rw-r--r-- | engines/sherlock/objects.h | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sherlock/objects.h b/engines/sherlock/objects.h index 996054be43..337d320912 100644 --- a/engines/sherlock/objects.h +++ b/engines/sherlock/objects.h @@ -208,6 +208,7 @@ public:  	byte *_sequences;				// Holds animation sequences  	ImageFile *_images;				// Sprite images  	ImageFrame *_imageFrame;		// Pointer to shape in the images +	int _sequenceNumber;			// Sequence being used  	int _walkCount;					// Walk counter  	int _allow;						// Allowed UI commands  	int _frameNumber;				// Frame number in rame sequence to draw @@ -283,7 +284,6 @@ public:  	Common::String _pickUp;				// Message for if you can't pick up object  	WalkSequences _walkSequences;		// Holds animation sequences -	int _sequenceNumber;				// Sequence being used  	Common::Point _noShapeSize;			// Size of a NO_SHAPE  	int _status;						// Status: open/closed, moved/not moved  	int8 _misc;							// Miscellaneous use @@ -365,7 +365,6 @@ class Object: public BaseObject {  public:  	Common::String _name;			// Name  	Common::String _examine;		// Examine in-depth description -	int _sequenceNumber;  	int _sequenceOffset;  	int _pickup;  	int _defaultCommand;			// Default right-click command  | 
