- set currentLevel in SW

This commit is contained in:
Christoph Oelckers 2019-12-11 02:30:34 +01:00
parent 875678f20b
commit 3f524d7026
1 changed files with 2 additions and 1 deletions

View File

@ -654,7 +654,8 @@ bool LoadLevel(const char *filename)
Printf("Level not found: %s", filename);
return false;
}
STAT_NewLevel(filename);
currentLevel = &mapList[Level];
STAT_NewLevel(currentLevel->labelName);
return true;
}