AK: Fix accidentally-recursive call in BitStream

This commit is contained in:
Ben Wiederhake 2020-08-29 18:22:08 +02:00 committed by Andreas Kling
parent bc9f8f5c39
commit 0d3a8d5397

View file

@ -77,7 +77,7 @@ public:
}
}
return discard_or_error(count);
return m_stream.discard_or_error(count);
}
u32 read_bits(size_t count)