1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 10:33:32 +02:00

Don't unset Flip Mode when deleting all data in M&P

Whenever you delete all your save data, your settings aren't changed at
all, and you could resave them if you fiddled with a setting somewhere.
But the full game doesn't count Flip Mode as a setting, instead it
counts it as an unlock. This means deleting your save data would unset
Flip Mode in M&P, which would seem weird because in M&P it's just a
simple setting.

For consistency, Flip Mode shouldn't be unset when deleting save data in
M&P.
This commit is contained in:
Misa 2020-11-03 21:56:18 -08:00 committed by Ethan Lee
parent 4ebf89e844
commit 6de14d95ee

View File

@ -4429,7 +4429,9 @@ void Game::deletestats()
bestlives[i] = -1;
bestrank[i] = -1;
}
#ifndef MAKEANDPLAY
graphics.setflipmode = false;
#endif
stat_trinkets = 0;
}
}