Skip to content

Commit

Permalink
SCUMM - Fix bug #3536645, FT Missing Dialogue Line
Browse files Browse the repository at this point in the history
The condition for setting up the scene when encountering Father
Torque had been accidentally inverted, so the function was called
over and over (presumably causing the scene to stall), insead of
just once. I don't know much about INSANE, but sev has confirmed
that this is the correct fix.
  • Loading branch information
Torbjörn Andersson committed Jun 23, 2012
1 parent 95d9052 commit a6b65b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/scumm/insane/insane_scenes.cpp
Expand Up @@ -1386,7 +1386,7 @@ void Insane::postCase12(byte *renderBitmap, int32 codecparam, int32 setupsan12,
break;
case EN_TORQUE:
turnBen(false);
if (_actor[1].y != 300)
if (_actor[1].y == 300)
prepareScenePropScene(57, 1, 0);
break;
default:
Expand Down

0 comments on commit a6b65b8

Please sign in to comment.