aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/animation/meta_animation.cpp
diff options
context:
space:
mode:
authorMarisa-Chan2014-11-20 14:48:24 +0600
committerMarisa-Chan2014-11-20 14:48:24 +0600
commit5b352da304931bafcfcddbe08461488335c7ad57 (patch)
tree6d96693d9efdb59a16050d57c6003593d95a22a1 /engines/zvision/animation/meta_animation.cpp
parentd5f7a1dc03f2a38774ad1c8dd6741bb9c6fb9848 (diff)
downloadscummvm-rg350-5b352da304931bafcfcddbe08461488335c7ad57.tar.gz
scummvm-rg350-5b352da304931bafcfcddbe08461488335c7ad57.tar.bz2
scummvm-rg350-5b352da304931bafcfcddbe08461488335c7ad57.zip
ZVISION: More CamelCase and a bit of comments cleanup
Diffstat (limited to 'engines/zvision/animation/meta_animation.cpp')
-rw-r--r--engines/zvision/animation/meta_animation.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/zvision/animation/meta_animation.cpp b/engines/zvision/animation/meta_animation.cpp
index 1ea6df6481..2e549ec838 100644
--- a/engines/zvision/animation/meta_animation.cpp
+++ b/engines/zvision/animation/meta_animation.cpp
@@ -39,7 +39,7 @@ namespace ZVision {
MetaAnimation::MetaAnimation(const Common::String &fileName, ZVision *engine)
: _fileType(RLF),
- _cur_frame(NULL) {
+ _curFrame(NULL) {
Common::String tmpFileName = fileName;
tmpFileName.toLowercase();
if (tmpFileName.hasSuffix(".rlf")) {
@@ -102,11 +102,11 @@ void MetaAnimation::seekToFrame(int frameNumber) {
const Graphics::Surface *MetaAnimation::decodeNextFrame() {
if (_fileType == RLF)
- _cur_frame = _animation.rlf->decodeNextFrame();
+ _curFrame = _animation.rlf->decodeNextFrame();
else
- _cur_frame = _animation.avi->decodeNextFrame();
+ _curFrame = _animation.avi->decodeNextFrame();
- return _cur_frame;
+ return _curFrame;
}
const Graphics::Surface *MetaAnimation::getFrameData(uint frameNumber) {
@@ -114,12 +114,12 @@ const Graphics::Surface *MetaAnimation::getFrameData(uint frameNumber) {
frameNumber = frameCount() - 1;
if (_fileType == RLF) {
- _cur_frame = _animation.rlf->getFrameData(frameNumber);
- return _cur_frame;
+ _curFrame = _animation.rlf->getFrameData(frameNumber);
+ return _curFrame;
} else {
_animation.avi->seekToFrame(frameNumber);
- _cur_frame = _animation.avi->decodeNextFrame();
- return _cur_frame;
+ _curFrame = _animation.avi->decodeNextFrame();
+ return _curFrame;
}
}