Skip to content

Commit 297b719

Browse files
committed
Delete unnecessary comment
1 parent 95db456 commit 297b719

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-module/displayio/Shape.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void common_hal_displayio_shape_construct(displayio_shape_t *self, uint32_t widt
4949
self->half_height = height;
5050

5151
self->data = m_malloc(height * sizeof(uint32_t), false);
52-
//for (uint16_t i = 0; i < height; i++) {
52+
5353
for (uint16_t i = 0; i <= height; i++) {
5454
self->data[2 * i] = 0;
5555
self->data[2 * i + 1] = width;

0 commit comments

Comments
 (0)