diff options
author | Marisa-Chan | 2013-10-20 18:39:06 +0000 |
---|---|---|
committer | Marisa-Chan | 2013-10-20 18:39:06 +0000 |
commit | 25834faf0738ae6c33819b196fdfb8ab5e8f1888 (patch) | |
tree | fb4c9fa0883f24d44a9c76926cf99be32c908f9e /engines/zvision/animation_control.h | |
parent | aefa58f5a4470b1ba2e275c62aa1a7a0cec76539 (diff) | |
download | scummvm-rg350-25834faf0738ae6c33819b196fdfb8ab5e8f1888.tar.gz scummvm-rg350-25834faf0738ae6c33819b196fdfb8ab5e8f1888.tar.bz2 scummvm-rg350-25834faf0738ae6c33819b196fdfb8ab5e8f1888.zip |
ZVISION: Style modifing by astyle.
Diffstat (limited to 'engines/zvision/animation_control.h')
-rw-r--r-- | engines/zvision/animation_control.h | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/engines/zvision/animation_control.h b/engines/zvision/animation_control.h index 2ac3691483..247fbf765d 100644 --- a/engines/zvision/animation_control.h +++ b/engines/zvision/animation_control.h @@ -50,13 +50,13 @@ public: private: enum FileType { - RLF = 1, - AVI = 2 + RLF = 1, + AVI = 2 }; private: uint32 _animationKey; - + union { RlfAnimation *rlf; Video::VideoDecoder *avi; @@ -76,10 +76,18 @@ private: public: bool process(uint32 deltaTimeInMillis); - void setAnimationKey(uint32 animationKey) { _animationKey = animationKey; } - void setLoopCount(uint loopCount) { _loopCount = loopCount; } - void setXPos(int32 x) { _x = x; } - void setYPost(int32 y) { _y = y; } + void setAnimationKey(uint32 animationKey) { + _animationKey = animationKey; + } + void setLoopCount(uint loopCount) { + _loopCount = loopCount; + } + void setXPos(int32 x) { + _x = x; + } + void setYPost(int32 y) { + _y = y; + } }; } // End of namespace ZVision |