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

Remove unused/useless vars music.custompd/musicfade(in)/volume

I have no idea why these are here, but it'll simplify readability and
reduce the chance of confusion if I remove them.
This commit is contained in:
Misa 2020-06-27 01:40:58 -07:00 committed by Ethan Lee
parent facb079b35
commit 22738cdb97
2 changed files with 1 additions and 10 deletions

View File

@ -218,15 +218,10 @@ void musicclass::init()
musicVolume = 128;
FadeVolAmountPerFrame = 0;
custompd = false;
currentsong = 0;
musicfade = 0;
musicfadein = 0;
nicechange = 0;
nicefade = 0;
resumesong = 0;
volume = 0.0f;
fadeoutqueuesong = -1;
dontquickfade = false;

View File

@ -26,7 +26,7 @@ public:
void changemusicarea(int x, int y);
int currentsong, musicfade, musicfadein;
int currentsong;
int resumesong;
void playef(int t);
@ -43,10 +43,6 @@ public:
int FadeVolAmountPerFrame;
int musicVolume;
float volume;
bool custompd;
int fadeoutqueuesong; // -1 if no song queued
bool dontquickfade;