mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-11 19:39:45 +01: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:
parent
facb079b35
commit
22738cdb97
2 changed files with 1 additions and 10 deletions
|
@ -218,15 +218,10 @@ void musicclass::init()
|
||||||
musicVolume = 128;
|
musicVolume = 128;
|
||||||
FadeVolAmountPerFrame = 0;
|
FadeVolAmountPerFrame = 0;
|
||||||
|
|
||||||
custompd = false;
|
|
||||||
|
|
||||||
currentsong = 0;
|
currentsong = 0;
|
||||||
musicfade = 0;
|
|
||||||
musicfadein = 0;
|
|
||||||
nicechange = 0;
|
nicechange = 0;
|
||||||
nicefade = 0;
|
nicefade = 0;
|
||||||
resumesong = 0;
|
resumesong = 0;
|
||||||
volume = 0.0f;
|
|
||||||
fadeoutqueuesong = -1;
|
fadeoutqueuesong = -1;
|
||||||
dontquickfade = false;
|
dontquickfade = false;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ public:
|
||||||
|
|
||||||
void changemusicarea(int x, int y);
|
void changemusicarea(int x, int y);
|
||||||
|
|
||||||
int currentsong, musicfade, musicfadein;
|
int currentsong;
|
||||||
int resumesong;
|
int resumesong;
|
||||||
|
|
||||||
void playef(int t);
|
void playef(int t);
|
||||||
|
@ -43,10 +43,6 @@ public:
|
||||||
int FadeVolAmountPerFrame;
|
int FadeVolAmountPerFrame;
|
||||||
int musicVolume;
|
int musicVolume;
|
||||||
|
|
||||||
float volume;
|
|
||||||
|
|
||||||
bool custompd;
|
|
||||||
|
|
||||||
int fadeoutqueuesong; // -1 if no song queued
|
int fadeoutqueuesong; // -1 if no song queued
|
||||||
bool dontquickfade;
|
bool dontquickfade;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue