From a6e1eb9c95d1791bba853c8da85466895ea12be4 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 9 Aug 2004 03:21:51 +0000 Subject: [PATCH] Better method, shouldn't be used in PC FT demo. svn-id: r14527 --- scumm/insane/insane.cpp | 4 +--- scumm/insane/insane_enemy.cpp | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/scumm/insane/insane.cpp b/scumm/insane/insane.cpp index 5b5df158bbb..2dd7f96aea8 100644 --- a/scumm/insane/insane.cpp +++ b/scumm/insane/insane.cpp @@ -808,10 +808,8 @@ void Insane::prepareScenePropScene(int32 scenePropNum, bool arg_4, bool arg_8) { debugC(DEBUG_INSANE, "Insane::prepareScenePropScene(%d, %d, %d)", scenePropNum, arg_4, arg_8); - if (!((_vm->_features & GF_DEMO) && (_vm->_features & GF_PC))) { - if (!loadScenePropSounds(idx)) + if (((_vm->_features & GF_DEMO) && (_vm->_features & GF_PC)) || !loadScenePropSounds(idx)) return; - } _actor[0].defunct = arg_4; _actor[1].defunct = arg_8; diff --git a/scumm/insane/insane_enemy.cpp b/scumm/insane/insane_enemy.cpp index 9cc96532fea..ab64941a72b 100644 --- a/scumm/insane/insane_enemy.cpp +++ b/scumm/insane/insane_enemy.cpp @@ -2643,9 +2643,7 @@ void Insane::actor13Reaction(int32 buttons) { _actor[1].act[3].state = 70; break; case 70: - if (!_actor[1].scenePropSubIdx || ((_vm->_features & GF_DEMO) && (_vm->_features & GF_PC))) { - _actor[1].act[3].state = 118; - } else { + if (_actor[1].scenePropSubIdx) { smlayer_setActorFacing(1, 3, 4, 180); tmp = _currScenePropIdx + _actor[1].scenePropSubIdx; if (!smlayer_startVoice(_sceneProp[tmp].sound)) @@ -2653,6 +2651,8 @@ void Insane::actor13Reaction(int32 buttons) { else _actor[1].runningSound = _sceneProp[tmp].sound; _actor[1].act[3].state = 72; + } else { + _actor[1].act[3].state = 118; } break; case 71: