mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
Reset savex, savey, and savegc in hardreset
While refactoring scriptclass::startgamemode, I noticed that these variables weren't being reset. Fortunately, this doesn't seem to have affected anything because they get overwritten one way or another in startgamemode. But it's good just to be defensive and reset them anyway. They are not reset in 2.2 or 2.0 glitchrunner mode because dying during exiting to the menu is needed for credits warp, and that means the checkpoint position needs to be maintained through.
This commit is contained in:
parent
7a48d0a53e
commit
6768a33f2d
1 changed files with 3 additions and 0 deletions
|
@ -3163,6 +3163,9 @@ void scriptclass::hardreset(void)
|
|||
// Ironically, resetting more variables makes the janky fadeout system in glitchrunnermode even more glitchy
|
||||
game.saverx = 0;
|
||||
game.savery = 0;
|
||||
game.savex = 0;
|
||||
game.savey = 0;
|
||||
game.savegc = 0;
|
||||
}
|
||||
game.savecolour = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue