fixed missing check for zapcockpit patch

This commit is contained in:
louis 2016-05-30 05:29:15 +02:00
parent 7b26d65360
commit 79623b6571
1 changed files with 7 additions and 2 deletions

View File

@ -367,7 +367,12 @@ void cViewChannel::Close(void) {
fader = NULL;
delete shifter;
shifter = NULL;
if (initFinished && viewType == dcDefault && ShiftTime() > 0) {
bool doAnim = true;
#ifdef USE_ZAPCOCKPIT
if (viewType != dcDefault)
doAnim = false;
#endif
if (initFinished && doAnim && ShiftTime() > 0) {
cRect shiftbox = CoveredArea();
cPoint ref = cPoint(shiftbox.X(), shiftbox.Y());
cPoint end = ShiftStart(shiftbox);
@ -375,7 +380,7 @@ void cViewChannel::Close(void) {
shifter->Shift();
delete shifter;
shifter = NULL;
} else if (initFinished && viewType == dcDefault && FadeTime() > 0) {
} else if (initFinished && doAnim && FadeTime() > 0) {
fader = new cAnimation((cFadable*)this, false);
fader->Fade();
delete fader;