mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Visually remove all other tabs in SAVE-only enter screen
This commit does this: > Yeah, it'd be better if all the other options were gone, and "[SAVE]" > would be re-centered in the middle of the screen.
This commit is contained in:
parent
679b590da5
commit
db0c38711c
1 changed files with 6 additions and 1 deletions
|
@ -1735,7 +1735,12 @@ void maprender()
|
||||||
|
|
||||||
// Draw the selected page name at the bottom
|
// Draw the selected page name at the bottom
|
||||||
// menupage 0 - 3 is the pause screen
|
// menupage 0 - 3 is the pause screen
|
||||||
if (game.menupage <= 3)
|
if (script.running && game.menupage == 3)
|
||||||
|
{
|
||||||
|
// While in a cutscene, you can only save
|
||||||
|
graphics.Print(-1, 220, "[SAVE]", 196, 196, 255 - help.glow, true);
|
||||||
|
}
|
||||||
|
else if (game.menupage <= 3)
|
||||||
{
|
{
|
||||||
std::string tab1;
|
std::string tab1;
|
||||||
if (game.insecretlab)
|
if (game.insecretlab)
|
||||||
|
|
Loading…
Reference in a new issue