From 36cbdc734c17ebe28508f53f4933fa21aea22579 Mon Sep 17 00:00:00 2001 From: Scott Allen Date: Sat, 5 Jun 2021 07:37:01 -0400 Subject: [PATCH] Fix typo in fillScreen() C++ equivalent code --- src/Arduboy2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Arduboy2.cpp b/src/Arduboy2.cpp index 2717f00..552828d 100644 --- a/src/Arduboy2.cpp +++ b/src/Arduboy2.cpp @@ -623,7 +623,7 @@ void Arduboy2Base::fillScreen(uint8_t color) // { // color = 0xFF; // all pixels on // } - // for (int16_t i = 0; i < WIDTH * HEIGTH / 8; i++) + // for (int16_t i = 0; i < WIDTH * HEIGHT / 8; i++) // { // sBuffer[i] = color; // }