mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 18:04:09 +03:00
Add mapexplored(), mapreveal() commands
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
c04c6bc552
commit
8a00ea7aab
@@ -5930,6 +5930,10 @@ void Game::customloadquick(const std::string& savfile)
|
||||
{
|
||||
map.customshowmm = help.Int(pText);
|
||||
}
|
||||
else if (SDL_strcmp(pKey, "mapreveal") == 0)
|
||||
{
|
||||
map.revealmap = help.Int(pText);
|
||||
}
|
||||
else if (SDL_strcmp(pKey, "disabletemporaryaudiopause") == 0)
|
||||
{
|
||||
disabletemporaryaudiopause = help.Int(pText);
|
||||
@@ -6369,6 +6373,8 @@ bool Game::customsavequick(const std::string& savfile)
|
||||
|
||||
xml::update_tag(msgs, "showminimap", (int) map.customshowmm);
|
||||
|
||||
xml::update_tag(msgs, "mapreveal", (int) map.revealmap);
|
||||
|
||||
xml::update_tag(msgs, "disabletemporaryaudiopause", (int) disabletemporaryaudiopause);
|
||||
|
||||
xml::update_tag(msgs, "showtrinkets", (int) map.showtrinkets);
|
||||
|
||||
Reference in New Issue
Block a user