From 9803f7e6c045d625ee41e5b2769b1b2de3ab8ee3 Mon Sep 17 00:00:00 2001 From: Marisa-Chan Date: Mon, 13 Jan 2014 09:07:44 +0700 Subject: ZVISION: Fix code style with astyle. --- engines/zvision/animation_node.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/zvision/animation_node.cpp') diff --git a/engines/zvision/animation_node.cpp b/engines/zvision/animation_node.cpp index 74b532b2ef..27ee873f98 100644 --- a/engines/zvision/animation_node.cpp +++ b/engines/zvision/animation_node.cpp @@ -191,11 +191,11 @@ void AnimationNode::addPlayNode(int32 slot, int x, int y, int x2, int y2, int st nod.start = start_frame; nod.stop = end_frame; if (_fileType == RLF) { - if (nod.stop >= (int)_animation.rlf->frameCount()) - nod.stop = _animation.rlf->frameCount() - 1; + if (nod.stop >= (int)_animation.rlf->frameCount()) + nod.stop = _animation.rlf->frameCount() - 1; } else if (_fileType == AVI) { - if (nod.stop > (int)_animation.avi->getFrameCount()) - nod.stop = _animation.avi->getFrameCount(); + if (nod.stop > (int)_animation.avi->getFrameCount()) + nod.stop = _animation.avi->getFrameCount(); } nod.slot = slot; nod._cur_frm = -1; -- cgit v1.2.3