1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 01:59:43 +01:00

Select "continue" if returning from new game when having had a save

If you started a new game while having had a save (meaning you selectedd
"new game" while it wasn't in the same position as "continue"), then
saved and quit, your cursor will now end up at "continue" instead of
"new game". (If you didn't save, then your cursor would be out-of-bounds
and end up at position 0 anyway.)
This commit is contained in:
Misa 2020-05-18 17:49:35 -07:00 committed by Ethan Lee
parent a33c460d40
commit 14af88695f

View file

@ -7357,6 +7357,11 @@ void Game::quittomenu()
else if (save_exists() || anything_unlocked())
{
returntomenu(Menu::play);
if (!insecretlab)
{
//Select "continue"
currentmenuoption = 0;
}
}
else
{