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

Remove unused function musicclass::processmusicfade()

It's a function that does nothing, and is also used by nothing.
This commit is contained in:
Misa 2020-04-02 18:03:42 -07:00 committed by Ethan Lee
parent eea2232c12
commit d3cdd33605
2 changed files with 0 additions and 12 deletions

View File

@ -308,17 +308,6 @@ void musicclass::fadeout()
currentsong = -1;
}
void musicclass::processmusicfade()
{
//musicfade--;
//if (musicfade > 0) {
// musicchannel.soundTransform = new SoundTransform(musicfade / 60);
//}else {
// musicchannel.stop();
// currentsong = -1;
//}
}
void musicclass::processmusicfadein()
{
musicVolume += FadeVolAmountPerFrame;

View File

@ -19,7 +19,6 @@ public:
void silencedasmusik();
void fadeMusicVolumeIn(int ms);
void fadeout();
void processmusicfade();
void processmusicfadein();
void processmusic();
void niceplay(int t);