mirror of
https://github.com/ZDoom/Raze.git
synced 2025-03-19 15:31:57 +00:00
- fixed BitArray constructor.
This commit is contained in:
parent
642088ed80
commit
cc16c02baa
1 changed files with 1 additions and 1 deletions
|
@ -1645,7 +1645,7 @@ public:
|
|||
}
|
||||
|
||||
BitArray(unsigned elem)
|
||||
: bytes((elem + 7) / 8, true)
|
||||
: bytes((elem + 7) / 8, true), size(elem)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue