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
1 changed files with 6 additions and 1 deletions

View File

@ -1735,7 +1735,12 @@ void maprender()
// Draw the selected page name at the bottom
// 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;
if (game.insecretlab)