mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-30 00:41:24 +00:00
- 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:
parent
14a2560d5f
commit
73a4e0d1fe
32 changed files with 101 additions and 386 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue