forked from mirror/openmw-tes3mp
[General] Allow single bit booleans in packets
This commit is contained in:
parent
9742b0a801
commit
c2600bac8e
1 changed files with 2 additions and 9 deletions
|
@ -70,17 +70,10 @@ namespace mwmp
|
|||
|
||||
void RW(bool &data, bool write)
|
||||
{
|
||||
char _data;
|
||||
if (write)
|
||||
{
|
||||
_data = data;
|
||||
bs->Write(_data);
|
||||
}
|
||||
bs->Write(data);
|
||||
else
|
||||
{
|
||||
bs->Read(_data);
|
||||
data = _data;
|
||||
}
|
||||
bs->Read(data);
|
||||
}
|
||||
|
||||
void RW(std::string &str, bool write, bool compress = 0)
|
||||
|
|
Loading…
Reference in a new issue