1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00

Reset some stats that weren't being reset in deletestats

This function now properly deletes the Super Gravitron record, the Super
Gravitron rank, and the best game deaths. They were not being properly
reset previously, meaning you would have to go into your save file to
properly clean out your save data.
This commit is contained in:
Misa 2021-09-10 18:02:52 -07:00
parent 2b9b4c39cb
commit 7c29bb862a

View File

@ -4007,6 +4007,9 @@ void Game::deletestats(void)
bestlives[i] = -1;
bestrank[i] = -1;
}
swnrecord = 0;
swnbestrank = 0;
bestgamedeaths = 0;
#ifndef MAKEANDPLAY
graphics.setflipmode = false;
#endif