Start support for multiple build targets.
This commit is contained in:
parent
e3e03dc31f
commit
3dce256213
52 changed files with 1044 additions and 340 deletions
|
@ -20,8 +20,7 @@ bool InputBitStream::readNextByte(Byte& buffer)
|
|||
{
|
||||
if (mStream->good())
|
||||
{
|
||||
buffer = static_cast<Byte>(mStream->get());
|
||||
return true;
|
||||
return mStream->get(buffer);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue