diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-07-28 20:26:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-07-28 20:26:58 +0300 |
commit | 769e7987eb1ef269b0973923f335f3838f592a8c (patch) | |
tree | d88ceb35c5eabacf0da38de70f6df2de62f33b21 /src/compoundsprite.h | |
parent | c1e75f8d55dddf4fa3740a2f879805533b00a02d (diff) | |
download | plus-769e7987eb1ef269b0973923f335f3838f592a8c.tar.gz plus-769e7987eb1ef269b0973923f335f3838f592a8c.tar.bz2 plus-769e7987eb1ef269b0973923f335f3838f592a8c.tar.xz plus-769e7987eb1ef269b0973923f335f3838f592a8c.zip |
move bools in compoundsprite.
Diffstat (limited to 'src/compoundsprite.h')
-rw-r--r-- | src/compoundsprite.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/compoundsprite.h b/src/compoundsprite.h index 6049cdeb9..0c7dc3034 100644 --- a/src/compoundsprite.h +++ b/src/compoundsprite.h @@ -147,16 +147,15 @@ private: mutable Image *mImage; mutable Image *mAlphaImage; - mutable int mOffsetX, mOffsetY; - + mutable int mOffsetX; + mutable int mOffsetY; + std::vector<Sprite*> mSprites; + mutable int mNextRedrawTime; + static bool mEnableDelay; mutable bool mNeedsRedraw; - bool mEnableAlphaFix; bool mDisableAdvBeingCaching; bool mDisableBeingCaching; - std::vector<Sprite*> mSprites; - mutable int mNextRedrawTime; - static bool mEnableDelay; }; #endif // COMPOUNDSPRITE_H |