mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03:00
Explore all rooms when entering Secret Lab
If you enter the Secret Lab from the title screen, all rooms will be explored. However, if you enter the Secret Lab via the Secret Lab entrance cutscene (epilogue), not all rooms will be explored, which is inconsistent. To do this, just do an SDL_memset() for the entersecretlab script command.
This commit is contained in:
@@ -1515,6 +1515,7 @@ void scriptclass::run(void)
|
||||
{
|
||||
game.unlocknum(8);
|
||||
game.insecretlab = true;
|
||||
SDL_memset(map.explored, true, sizeof(map.explored));
|
||||
}
|
||||
else if (words[0] == "leavesecretlab")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user