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;