mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Remove useless attribute rcol from finalclass
The rcol of finalclass is always 6, so there's no reason to have an attribute there as if you could change it or anything.
This commit is contained in:
@@ -8,7 +8,6 @@ const int* finalclass::loadlevel(int rx, int ry)
|
||||
|
||||
t = rx + (ry * 100);
|
||||
const int* result;
|
||||
rcol = 0;
|
||||
warpx = false;
|
||||
warpy = false;
|
||||
|
||||
@@ -1410,7 +1409,6 @@ const int* finalclass::loadlevel(int rx, int ry)
|
||||
98,98,220,218,98,98,98,98,98,98,98,98,98,98,98,98,98,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
};
|
||||
|
||||
rcol = 6;
|
||||
warpy = true;
|
||||
roomname = "Temporary Fault...";
|
||||
result = contents;
|
||||
|
||||
@@ -12,7 +12,6 @@ public:
|
||||
const int* loadlevel(int rx, int ry);
|
||||
|
||||
std::string roomname;
|
||||
int rcol;
|
||||
bool warpx, warpy;
|
||||
};
|
||||
|
||||
|
||||
@@ -1406,7 +1406,6 @@ void mapclass::loadlevel(int rx, int ry)
|
||||
roomname = finallevel.roomname;
|
||||
tileset = 1;
|
||||
background = 3;
|
||||
graphics.rcol = finallevel.rcol;
|
||||
graphics.backgrounddrawn = false;
|
||||
|
||||
if (finalstretch)
|
||||
|
||||
Reference in New Issue
Block a user