1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-02 11:03:32 +02:00

Explicitly initialize SoundTrack::volume

While this is not needed because it's a static variable, it doesn't hurt
to be explicit, especially if it's going to be refactored in the future.
This commit is contained in:
Misa 2022-06-10 11:17:38 -07:00
parent c077500d16
commit dca3c9600c

View File

@ -246,7 +246,7 @@ end:
static float volume;
};
FAudioSourceVoice** SoundTrack::voices = NULL;
float SoundTrack::volume;
float SoundTrack::volume = 0.0f;
class MusicTrack
{