diff options
| author | Max Horn | 2010-11-01 21:36:39 +0000 | 
|---|---|---|
| committer | Max Horn | 2010-11-01 21:36:39 +0000 | 
| commit | cba30ee716a3679d86656d6f1aade3e33d3130d7 (patch) | |
| tree | be64ba40b9a1c6d6d484c18a556e334a33463be9 | |
| parent | 9cadcf4c5b755adbdf8381bcdd82e14f097f2304 (diff) | |
| download | scummvm-rg350-cba30ee716a3679d86656d6f1aade3e33d3130d7.tar.gz scummvm-rg350-cba30ee716a3679d86656d6f1aade3e33d3130d7.tar.bz2 scummvm-rg350-cba30ee716a3679d86656d6f1aade3e33d3130d7.zip | |
TINSEL: Correcting my previous commit, oops
svn-id: r54030
| -rw-r--r-- | engines/tinsel/actors.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/tinsel/actors.cpp b/engines/tinsel/actors.cpp index b6f6259b94..27cb62f2f2 100644 --- a/engines/tinsel/actors.cpp +++ b/engines/tinsel/actors.cpp @@ -629,7 +629,7 @@ int NextTaggedActor() {  	PMOVER	pActor;  	bool	hid; -	while (ti < NumActors); { +	while (ti < NumActors) {  		if (actorInfo[ti].tagged) {  			pActor = GetMover(ti+1);  			if (pActor) @@ -642,7 +642,7 @@ int NextTaggedActor() {  			}  		}  		++ti; -	} while (++ti < NumActors); +	}  	return 0;  } | 
