diff options
| -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);  			}  		} | 
