mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-22 08:49:46 +01:00
Turn map.specialnames into an array instead of a vector
Easiest de-vectoring I've had to do yet.
This commit is contained in:
parent
450cf1a31e
commit
00cb033594
2 changed files with 1 additions and 2 deletions
|
@ -71,7 +71,6 @@ mapclass::mapclass()
|
||||||
tileset = 0;
|
tileset = 0;
|
||||||
initmapdata();
|
initmapdata();
|
||||||
|
|
||||||
specialnames.resize(8);
|
|
||||||
resetnames();
|
resetnames();
|
||||||
|
|
||||||
ypos = 0;
|
ypos = 0;
|
||||||
|
|
|
@ -132,7 +132,7 @@ public:
|
||||||
int customzoom;
|
int customzoom;
|
||||||
bool customshowmm;
|
bool customshowmm;
|
||||||
|
|
||||||
std::vector<std::string> specialnames;
|
std::string specialnames[8];
|
||||||
int glitchmode;
|
int glitchmode;
|
||||||
int glitchdelay;
|
int glitchdelay;
|
||||||
std::string glitchname;
|
std::string glitchname;
|
||||||
|
|
Loading…
Reference in a new issue