Remove register keywords

This commit is contained in:
Scott Allen 2021-04-16 08:47:32 -04:00
parent 7dc88bed30
commit ab4df7c77a
1 changed files with 2 additions and 2 deletions

View File

@ -581,10 +581,10 @@ void Arduboy2Base::drawFastHLine
w = xEnd - x;
// 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
register uint8_t mask = 1 << (y & 7);
uint8_t mask = 1 << (y & 7);
switch (color)
{