- made Blood's FullMap flag global and removed the hacks to show the full automap.

Also refactor show2dsector into a bit array to get rid of the bit shifting code at play here.
This commit is contained in:
Christoph Oelckers 2020-03-07 10:04:29 +01:00
parent 14a2560d5f
commit 73a4e0d1fe
32 changed files with 101 additions and 386 deletions

View file

@ -1498,6 +1498,11 @@ public:
{
memset(&bytes[0], 0, sizeof(bytes));
}
void SetAll(bool on)
{
memset(&bytes[0], on ? -1 : 0, sizeof(bytes));
}
};
// A wrapper to externally stored data.