1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 10:09: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:
Dav999-v 2020-11-16 03:12:28 +01:00 committed by Ethan Lee
parent 679b590da5
commit db0c38711c

View file

@ -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)