mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 09:54:10 +03:00
Turn areamap into plain array
For this one, I had to make it a static data member and then initialize it in a certain way in Map.cpp. It's pretty cool that you're able to do this.
This commit is contained in:
@@ -81,7 +81,7 @@ public:
|
||||
|
||||
int roomdeaths[20 * 20];
|
||||
int roomdeathsfinal[20 * 20];
|
||||
std::vector <int> areamap;
|
||||
static const int areamap[20 * 20];
|
||||
std::vector <int> contents;
|
||||
bool explored[20 * 20];
|
||||
std::vector <int> vmult;
|
||||
|
||||
Reference in New Issue
Block a user