1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Fixed some misleading indentation warnings

This commit is contained in:
tpoole 2017-03-27 11:57:00 +01:00
parent 91eb19e6f5
commit 79bdbc37cc
2 changed files with 2 additions and 2 deletions

View file

@ -451,7 +451,7 @@ private:
while ((h.dwFlags & MHDR_DONE) == 0)
Sleep (1);
int count = 500; // 1 sec timeout
int count = 500; // 1 sec timeout
while (--count >= 0)
{

View file

@ -424,7 +424,7 @@ int AudioProcessor::getChannelIndexInProcessBlockBuffer (bool isInput, int busIn
for (int i = 0; i < ioBus.size() && i < busIndex; ++i)
channelIndex += getChannelCountOfBus (isInput, i);
return channelIndex;
return channelIndex;
}
int AudioProcessor::getOffsetInBusBufferForAbsoluteChannelIndex (bool isInput, int absoluteChannelIndex, /*out*/ int& busIdx) const noexcept