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;