diff options
author | Martin Kiewitz | 2016-02-02 20:41:11 +0100 |
---|---|---|
committer | Martin Kiewitz | 2016-02-02 20:41:11 +0100 |
commit | 5cd7ad8622d9e131a5bbdc167c16efa6ca29b686 (patch) | |
tree | 42fcfcc29f4522d6e9a55728375acf6581184644 /engines/agi | |
parent | e6fbf372fbabeb91b42c074910f0cc880f8f31e5 (diff) | |
download | scummvm-rg350-5cd7ad8622d9e131a5bbdc167c16efa6ca29b686.tar.gz scummvm-rg350-5cd7ad8622d9e131a5bbdc167c16efa6ca29b686.tar.bz2 scummvm-rg350-5cd7ad8622d9e131a5bbdc167c16efa6ca29b686.zip |
AGI: code formatting
Diffstat (limited to 'engines/agi')
-rw-r--r-- | engines/agi/view.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/agi/view.cpp b/engines/agi/view.cpp index 0c6cce4716..ac3e60ee6d 100644 --- a/engines/agi/view.cpp +++ b/engines/agi/view.cpp @@ -627,8 +627,7 @@ void AgiEngine::updateScreenObjTable() { // AGI 2.272 (ddp, xmas) doesn't test step_time_count! if (loopNr != 4 && loopNr != screenObj->currentLoopNr) { - if (getVersion() <= 0x2272 || - screenObj->stepTimeCount == 1) { + if (getVersion() <= 0x2272 || screenObj->stepTimeCount == 1) { setLoop(screenObj, loopNr); } } |