mirror of https://github.com/MLXXXp/Arduboy2.git
Remove register keywords
This commit is contained in:
parent
7dc88bed30
commit
ab4df7c77a
|
@ -581,10 +581,10 @@ void Arduboy2Base::drawFastHLine
|
||||||
w = xEnd - x;
|
w = xEnd - x;
|
||||||
|
|
||||||
// buffer pointer plus row offset + x offset
|
// buffer pointer plus row offset + x offset
|
||||||
register uint8_t *pBuf = sBuffer + ((y / 8) * WIDTH) + x;
|
uint8_t *pBuf = sBuffer + ((y / 8) * WIDTH) + x;
|
||||||
|
|
||||||
// pixel mask
|
// pixel mask
|
||||||
register uint8_t mask = 1 << (y & 7);
|
uint8_t mask = 1 << (y & 7);
|
||||||
|
|
||||||
switch (color)
|
switch (color)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue