mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Remove useless variables 'swfStage' and 'stage'
'swfStage' gets set to 'stage' in updategraphicsmode() but... that does absolutely nothing, because they both contain exactly the same thing. And these variables aren't referenced anywhere else. So I'm removing both of these variables.
This commit is contained in:
@@ -12,8 +12,6 @@
|
|||||||
|
|
||||||
extern scriptclass script;
|
extern scriptclass script;
|
||||||
|
|
||||||
Stage stage;
|
|
||||||
Stage swfStage;
|
|
||||||
int temp;
|
int temp;
|
||||||
|
|
||||||
int tr;
|
int tr;
|
||||||
@@ -24,7 +22,6 @@ std::string tempstring;
|
|||||||
|
|
||||||
void updategraphicsmode()
|
void updategraphicsmode()
|
||||||
{
|
{
|
||||||
swfStage = stage;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void titlerender()
|
void titlerender()
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ public:
|
|||||||
int frameRate;
|
int frameRate;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern Stage stage;
|
|
||||||
extern Stage swfStage;
|
|
||||||
extern int temp;
|
extern int temp;
|
||||||
|
|
||||||
void titlerender();
|
void titlerender();
|
||||||
|
|||||||
Reference in New Issue
Block a user