1
0
Fork 0
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:
ed 2017-06-12 16:21:02 +01:00
parent 955b2aa71e
commit 15cc2bbc7f

View file

@ -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);
}
}
}