mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
BLOCKS: Removed an old method from the BitmapLEDProgram LittleFoot program
This commit is contained in:
parent
955b2aa71e
commit
15cc2bbc7f
1 changed files with 4 additions and 4 deletions
|
|
@ -64,10 +64,10 @@ juce::String BitmapLEDProgram::getLittleFootProgram()
|
|||
{
|
||||
int bit = (x + y * NUM_COLUMNS) * 16;
|
||||
|
||||
setLED (x, y, makeARGB (255,
|
||||
getHeapBits (bit, 5) << 3,
|
||||
getHeapBits (bit + 5, 6) << 2,
|
||||
getHeapBits (bit + 11, 5) << 3));
|
||||
fillPixel (makeARGB (255,
|
||||
getHeapBits (bit, 5) << 3,
|
||||
getHeapBits (bit + 5, 6) << 2,
|
||||
getHeapBits (bit + 11, 5) << 3), x, y);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue