mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Initialize nicechange to -1 for consistency
The game uses -1 to denote "no song" elsewhere, especially when a niceplay() has finished processing and it sets nicechange to -1 there, too.
This commit is contained in:
parent
c1ca57e096
commit
9698b42432
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ void musicclass::init()
|
|||
FadeVolAmountPerFrame = 0;
|
||||
|
||||
currentsong = 0;
|
||||
nicechange = 0;
|
||||
nicechange = -1;
|
||||
nicefade = false;
|
||||
resumesong = 0;
|
||||
fadeoutqueuesong = -1;
|
||||
|
|
Loading…
Reference in a new issue