Removed obsolete _insaneRunning flag
svn-id: r30107
This commit is contained in:
parent
b87b0f21f0
commit
be11104d70
3 changed files with 0 additions and 6 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue