1
0
Fork 0
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:
Misa 2020-07-03 02:33:33 -07:00 committed by Ethan Lee
parent 450cf1a31e
commit 00cb033594
2 changed files with 1 additions and 2 deletions

View file

@ -71,7 +71,6 @@ mapclass::mapclass()
tileset = 0;
initmapdata();
specialnames.resize(8);
resetnames();
ypos = 0;

View file

@ -132,7 +132,7 @@ public:
int customzoom;
bool customshowmm;
std::vector<std::string> specialnames;
std::string specialnames[8];
int glitchmode;
int glitchdelay;
std::string glitchname;