mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Initialize currentsong to -1
There's not any ill effects of it being initialized to 0 that I am aware of (because in most cases, it either gets overwritten anyways or there isn't a track playing in the first place), but it shouldn't be 0, because that's Path Complete, so fixing this just in case.
This commit is contained in:
parent
4058975ce9
commit
4ea26617b8
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ musicclass::musicclass(void)
|
|||
user_music_volume = USER_VOLUME_MAX;
|
||||
user_sound_volume = USER_VOLUME_MAX;
|
||||
|
||||
currentsong = 0;
|
||||
currentsong = -1;
|
||||
nicechange = -1;
|
||||
nicefade = false;
|
||||
quick_fade = true;
|
||||
|
|
Loading…
Reference in a new issue