LAB: Use the correct splash screen file for the DOS version

This commit is contained in:
Filippos Karapetis 2015-07-17 10:39:44 +03:00 committed by Eugene Sandulenko
parent e35307ccba
commit e031359d99

View File

@ -270,8 +270,6 @@ static void NReadPict(const char *Filename, bool PlayOnce) {
}
//#define ALL_LOGOS
/*****************************************************************************/
/* Does the introduction sequence for Labyrinth. */
/*****************************************************************************/
@ -299,7 +297,10 @@ void introSequence() {
g_music->initMusic();
nopalchange = true;
NReadPict("TNDcycle2.pic", true);
if (g_lab->getPlatform() != Common::kPlatformWindows)
NReadPict("TNDcycle.pic", true);
else
NReadPict("TNDcycle2.pic", true);
nopalchange = false;
FadePalette = Palette;