mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01: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:
parent
606c740b4f
commit
16df287c90
2 changed files with 0 additions and 5 deletions
|
@ -12,8 +12,6 @@
|
|||
|
||||
extern scriptclass script;
|
||||
|
||||
Stage stage;
|
||||
Stage swfStage;
|
||||
int temp;
|
||||
|
||||
int tr;
|
||||
|
@ -24,7 +22,6 @@ std::string tempstring;
|
|||
|
||||
void updategraphicsmode()
|
||||
{
|
||||
swfStage = stage;
|
||||
}
|
||||
|
||||
void titlerender()
|
||||
|
|
|
@ -14,8 +14,6 @@ public:
|
|||
int frameRate;
|
||||
};
|
||||
|
||||
extern Stage stage;
|
||||
extern Stage swfStage;
|
||||
extern int temp;
|
||||
|
||||
void titlerender();
|
||||
|
|
Loading…
Reference in a new issue