mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-31 01:11:15 +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)
|
BitArray(unsigned elem)
|
||||||
: bytes((elem + 7) / 8, true)
|
: bytes((elem + 7) / 8, true), size(elem)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue