1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02: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:
Misa 2023-06-03 15:52:24 -07:00
parent 4058975ce9
commit 4ea26617b8

View File

@ -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;