mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix for out of bounds LED index in BlocksDrawing example
This commit is contained in:
parent
e040353898
commit
cb287f37e3
1 changed files with 2 additions and 1 deletions
|
|
@ -108,7 +108,8 @@ public:
|
|||
/** Sets the colour of one of the LEDComponents */
|
||||
void setLEDColour (int x, int y, Colour c)
|
||||
{
|
||||
jassert (isPositiveAndBelow (x, 15) && isPositiveAndBelow (y, 15));
|
||||
x = jmin (x, 14);
|
||||
y = jmin (y, 14);
|
||||
|
||||
leds.getUnchecked ((x * 15) + y)->setColour (c);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue