mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-01 14:11:01 +00:00
parent
dfc2cd8580
commit
24c797b7e3
1 changed files with 11 additions and 1 deletions
|
@ -3191,7 +3191,17 @@ void loadcons()
|
||||||
InitGameVarPointers();
|
InitGameVarPointers();
|
||||||
ResetSystemDefaults();
|
ResetSystemDefaults();
|
||||||
S_WorldTourMappingsForOldSounds(); // create a sound mapping for World Tour.
|
S_WorldTourMappingsForOldSounds(); // create a sound mapping for World Tour.
|
||||||
if (isRRRA())
|
if (isWorldTour())
|
||||||
|
{
|
||||||
|
int num = fileSystem.CheckNumForName("e1l7.map");
|
||||||
|
int file = fileSystem.GetFileContainer(num);
|
||||||
|
if (file <= fileSystem.GetMaxIwadNum())
|
||||||
|
{
|
||||||
|
auto maprec = FindMapByName("e1l7");
|
||||||
|
if (maprec) maprec->nextLevel = levelnum(0, 4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (isRRRA())
|
||||||
{
|
{
|
||||||
// RRRA goes directly to the second episode after E1L7 to continue the game.
|
// RRRA goes directly to the second episode after E1L7 to continue the game.
|
||||||
int num = fileSystem.CheckNumForName("e1l7.map");
|
int num = fileSystem.CheckNumForName("e1l7.map");
|
||||||
|
|
Loading…
Reference in a new issue