mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-09 02:19:45 +01:00
Clear soundTracks and musicTracks on musicclass::init
This commit is contained in:
parent
2f760af439
commit
e71f47f1c9
1 changed files with 3 additions and 0 deletions
|
@ -6,6 +6,9 @@
|
|||
|
||||
void musicclass::init()
|
||||
{
|
||||
soundTracks.clear();
|
||||
musicTracks.clear();
|
||||
|
||||
soundTracks.push_back(move(SoundTrack( "sounds/jump.wav" )));
|
||||
soundTracks.push_back(move(SoundTrack( "sounds/jump2.wav" )));
|
||||
soundTracks.push_back(move(SoundTrack( "sounds/hurt.wav" )));
|
||||
|
|
Loading…
Reference in a new issue