mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -246,7 +246,7 @@ end:
|
|||||||
static float volume;
|
static float volume;
|
||||||
};
|
};
|
||||||
FAudioSourceVoice** SoundTrack::voices = NULL;
|
FAudioSourceVoice** SoundTrack::voices = NULL;
|
||||||
float SoundTrack::volume;
|
float SoundTrack::volume = 0.0f;
|
||||||
|
|
||||||
class MusicTrack
|
class MusicTrack
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user