mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-27 02:20:05 +00:00
Fixed uninitialised variables warning
This commit is contained in:
parent
a2ee6339e1
commit
9caa91b166
1 changed files with 3 additions and 3 deletions
|
|
@ -1115,9 +1115,9 @@ public:
|
|||
|
||||
// set buffer pointers to minimize copying
|
||||
{
|
||||
int chIdx = 0, numChannels;
|
||||
bool interleaved;
|
||||
AudioBufferList* buffer;
|
||||
int chIdx = 0, numChannels = 0;
|
||||
bool interleaved = false;
|
||||
AudioBufferList* buffer = nullptr;
|
||||
|
||||
// use output pointers
|
||||
for (int busIdx = 0; busIdx < numOutputBuses; ++busIdx)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue