diff options
| author | Willem Jan Palenstijn | 2011-12-23 17:09:46 +0100 | 
|---|---|---|
| committer | Willem Jan Palenstijn | 2011-12-23 17:09:46 +0100 | 
| commit | 99b7fce6113943263bdf9140fab345d0353cf5bd (patch) | |
| tree | e5b22e5d9faee6ed4789673cdd3dcd85b2ea47d4 | |
| parent | 1b98cd5686409645bb99473954dd73bfdb9c5182 (diff) | |
| download | scummvm-rg350-99b7fce6113943263bdf9140fab345d0353cf5bd.tar.gz scummvm-rg350-99b7fce6113943263bdf9140fab345d0353cf5bd.tar.bz2 scummvm-rg350-99b7fce6113943263bdf9140fab345d0353cf5bd.zip | |
DREAMWEB: Fix regression in sparky
| -rw-r--r-- | engines/dreamweb/people.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/dreamweb/people.cpp b/engines/dreamweb/people.cpp index 4d66134e96..1e79471a65 100644 --- a/engines/dreamweb/people.cpp +++ b/engines/dreamweb/people.cpp @@ -273,7 +273,7 @@ void DreamBase::sparky(ReelRoutine &routine) {  	if (data.word(kCard1money))  		routine.b7 = 3;  	if (checkSpeed(routine)) { -		if (routine.reelPointer() != 34) { +		if (routine.reelPointer() == 34) {  			if (engine->randomNumber() < 30)  				routine.incReelPointer();  			else | 
