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

SoundTrack::Init: Remove unused audio_channels arg

Missed this when reviewing the FAudio PR, so I'll just remove it now.
This commit is contained in:
Misa 2022-03-31 11:13:57 -07:00
parent 828aca2c8e
commit e47781f92f

View File

@ -174,7 +174,7 @@ end:
}
}
static void Init(int audio_rate, int audio_channels)
static void Init(int audio_rate)
{
if (voices == NULL)
{
@ -594,7 +594,7 @@ void musicclass::init(void)
return;
}
SoundTrack::Init(44100, 2);
SoundTrack::Init(44100);
soundTracks.push_back(SoundTrack( "sounds/jump.wav" ));
soundTracks.push_back(SoundTrack( "sounds/jump2.wav" ));