mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-02 15:32:19 +03: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:
@@ -737,7 +737,7 @@ musicclass::musicclass(void)
|
|||||||
user_music_volume = USER_VOLUME_MAX;
|
user_music_volume = USER_VOLUME_MAX;
|
||||||
user_sound_volume = USER_VOLUME_MAX;
|
user_sound_volume = USER_VOLUME_MAX;
|
||||||
|
|
||||||
currentsong = 0;
|
currentsong = -1;
|
||||||
nicechange = -1;
|
nicechange = -1;
|
||||||
nicefade = false;
|
nicefade = false;
|
||||||
quick_fade = true;
|
quick_fade = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user