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
1 changed files with 1 additions and 1 deletions

View File

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