Browse Source

Xcode strict warnings

tags/2021-05-28
ed 9 years ago
parent
commit
15cab580e2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/BLOCKS/BlocksSynth/Source/WaveshapeProgram.h

+ 1
- 1
examples/BLOCKS/BlocksSynth/Source/WaveshapeProgram.h View File

@@ -80,7 +80,7 @@ public:
}
// Store the values for each of the waveshapes at the correct offsets in the shared data heap
for (int i = 0; i < 45; ++i)
for (uint8 i = 0; i < 45; ++i)
{
ledGrid.setDataByte (sineWaveOffset + i, sineWaveY[i]);
ledGrid.setDataByte (squareWaveOffset + i, squareWaveY[i]);


Loading…
Cancel
Save