diff options
| author | Strangerke | 2015-12-16 17:03:42 +0100 | 
|---|---|---|
| committer | Willem Jan Palenstijn | 2015-12-23 21:34:06 +0100 | 
| commit | 5ed11d721c170a762cea775580fef5eef175c53a (patch) | |
| tree | b35411bda892d3432392c17d3244451a3a3f9f1a /engines/lab/anim.cpp | |
| parent | 83126e84eefc2493732bb2a158c6c41cae15ece4 (diff) | |
| download | scummvm-rg350-5ed11d721c170a762cea775580fef5eef175c53a.tar.gz scummvm-rg350-5ed11d721c170a762cea775580fef5eef175c53a.tar.bz2 scummvm-rg350-5ed11d721c170a762cea775580fef5eef175c53a.zip  | |
LAB: Verify the appropriate use of parenthesis in if statements
Diffstat (limited to 'engines/lab/anim.cpp')
| -rw-r--r-- | engines/lab/anim.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/anim.cpp b/engines/lab/anim.cpp index 532b242544..db5e3b313b 100644 --- a/engines/lab/anim.cpp +++ b/engines/lab/anim.cpp @@ -118,7 +118,7 @@ void Anim::diffNextFrame(bool onlyDiffData) {  			_frameNum++; -			if ((_frameNum == 1) && (_continuous || (!_playOnce))) +			if ((_frameNum == 1) && (_continuous || !_playOnce))  				_diffFileStart = _diffFile;  			_isAnim = (_frameNum >= 3) && (!_playOnce);  | 
