Removed obsolete _insaneRunning flag

svn-id: r30107
This commit is contained in:
Max Horn 2007-12-31 16:34:30 +00:00
parent b87b0f21f0
commit be11104d70
3 changed files with 0 additions and 6 deletions

View file

@ -866,9 +866,6 @@ protected:
Insane *_insane; Insane *_insane;
public: public:
/** This flag tells IMuseDigital that INSANE is running. */
bool _insaneRunning; // Used by IMuseDigital::flushTracks()
SmushMixer *_smixer; SmushMixer *_smixer;
SmushPlayer *_splayer; SmushPlayer *_splayer;

View file

@ -2547,10 +2547,8 @@ void ScummEngine_v7::o6_kernelSetFunctions() {
const int insaneVarNum = ((_game.features & GF_DEMO) && (_game.platform == Common::kPlatformPC)) const int insaneVarNum = ((_game.features & GF_DEMO) && (_game.platform == Common::kPlatformPC))
? 232 : 233; ? 232 : 233;
_insaneRunning = true;
_insane->setSmushParams(_smushFrameRate); _insane->setSmushParams(_smushFrameRate);
_insane->runScene(insaneVarNum); _insane->runScene(insaneVarNum);
_insaneRunning = false;
} }
} }
break; break;

View file

@ -886,7 +886,6 @@ ScummEngine_v7::ScummEngine_v7(OSystem *syst, const DetectorResult &dr)
_smushFrameRate = 0; _smushFrameRate = 0;
_smushVideoShouldFinish = false; _smushVideoShouldFinish = false;
_smushActive = false; _smushActive = false;
_insaneRunning = false;
_smixer = NULL; _smixer = NULL;
_splayer = NULL; _splayer = NULL;