Skip to content

Commit f2b262b

Browse files
authored
Merge pull request #22 from manele-se/patch-1
Fix color bug in clear() method
2 parents 06ec29d + b2168e6 commit f2b262b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArduinoGraphics.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void ArduinoGraphics::clear()
8383
{
8484
for (int x = 0; x < _width; x++) {
8585
for (int y = 0; y < _height; y++) {
86-
set(x, y, _backgroundR, _backgroundB, _backgroundG);
86+
set(x, y, _backgroundR, _backgroundG, _backgroundB);
8787
}
8888
}
8989
}

0 commit comments

Comments
 (0)