mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove unused function musicclass::processmusicfade()
It's a function that does nothing, and is also used by nothing.
This commit is contained in:
parent
eea2232c12
commit
d3cdd33605
2 changed files with 0 additions and 12 deletions
|
@ -308,17 +308,6 @@ void musicclass::fadeout()
|
||||||
currentsong = -1;
|
currentsong = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void musicclass::processmusicfade()
|
|
||||||
{
|
|
||||||
//musicfade--;
|
|
||||||
//if (musicfade > 0) {
|
|
||||||
// musicchannel.soundTransform = new SoundTransform(musicfade / 60);
|
|
||||||
//}else {
|
|
||||||
// musicchannel.stop();
|
|
||||||
// currentsong = -1;
|
|
||||||
//}
|
|
||||||
}
|
|
||||||
|
|
||||||
void musicclass::processmusicfadein()
|
void musicclass::processmusicfadein()
|
||||||
{
|
{
|
||||||
musicVolume += FadeVolAmountPerFrame;
|
musicVolume += FadeVolAmountPerFrame;
|
||||||
|
|
|
@ -19,7 +19,6 @@ public:
|
||||||
void silencedasmusik();
|
void silencedasmusik();
|
||||||
void fadeMusicVolumeIn(int ms);
|
void fadeMusicVolumeIn(int ms);
|
||||||
void fadeout();
|
void fadeout();
|
||||||
void processmusicfade();
|
|
||||||
void processmusicfadein();
|
void processmusicfadein();
|
||||||
void processmusic();
|
void processmusic();
|
||||||
void niceplay(int t);
|
void niceplay(int t);
|
||||||
|
|
Loading…
Reference in a new issue