Browse Source

Fixed some misleading indentation warnings

tags/2021-05-28
tpoole 8 years ago
parent
commit
79bdbc37cc
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      modules/juce_audio_devices/native/juce_win32_Midi.cpp
  2. +1
    -1
      modules/juce_audio_processors/processors/juce_AudioProcessor.cpp

+ 1
- 1
modules/juce_audio_devices/native/juce_win32_Midi.cpp 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)
{


+ 1
- 1
modules/juce_audio_processors/processors/juce_AudioProcessor.cpp 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


Loading…
Cancel
Save