mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01: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:
parent
4ebf89e844
commit
6de14d95ee
1 changed files with 2 additions and 0 deletions
|
@ -4429,7 +4429,9 @@ void Game::deletestats()
|
|||
bestlives[i] = -1;
|
||||
bestrank[i] = -1;
|
||||
}
|
||||
#ifndef MAKEANDPLAY
|
||||
graphics.setflipmode = false;
|
||||
#endif
|
||||
stat_trinkets = 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue