From ab4df7c77aa89316ef082cbc024aba5ab025af02 Mon Sep 17 00:00:00 2001 From: Scott Allen Date: Fri, 16 Apr 2021 08:47:32 -0400 Subject: [PATCH] Remove register keywords --- src/Arduboy2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Arduboy2.cpp b/src/Arduboy2.cpp index e6f6ffa..2717f00 100644 --- a/src/Arduboy2.cpp +++ b/src/Arduboy2.cpp @@ -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) {