We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18deacd commit 90e268fCopy full SHA for 90e268f
Learn/Simple Libraries/Social/libbadgetools/oled_box.c
@@ -25,7 +25,7 @@ void boxFilled(int32_t x0, int32_t y0, int32_t x1, int32_t y1, int32_t c)
25
x0 = x1;
26
x1 = temp;
27
}
28
- for(int idx = y0; idx < y1; idx++) line(x0, idx, x1, idx, c);
+ for(int idx = y0; idx <= y1; idx++) line(x0, idx, x1, idx, c);
29
if (self->AutoUpdate) screen_update();
30
31
0 commit comments