mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-27 02:20:05 +00:00
Fixes for BitArray and WavAudioFormat.
This commit is contained in:
parent
6bf8b51c5a
commit
30c9e939d1
3 changed files with 4 additions and 2 deletions
|
|
@ -938,7 +938,7 @@ void BitArray::loadFromMemoryBlock (const MemoryBlock& data) throw()
|
|||
{
|
||||
clear();
|
||||
|
||||
for (size_t i = data.getSize(); --i >= 0;)
|
||||
for (int i = (int) data.getSize(); --i >= 0;)
|
||||
this->setBitRangeAsInt ((int) (i << 3), 8, data [i]);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue