diff options
| author | Kevin Matocha <kmatocha@icloud.com> | 2020-09-04 22:03:57 -0500 |
|---|---|---|
| committer | Kevin Matocha <kmatocha@icloud.com> | 2020-09-04 22:03:57 -0500 |
| commit | 297b7195b089f08cd40f97f8a244484a82d2094e (patch) | |
| tree | efcb1dacb6a68f2b915a71207b18d8e7617e8e77 /shared-module | |
| parent | 95db456a7ea3db6b4f8047e2fe8b0351354ac7d7 (diff) | |
Delete unnecessary comment
Diffstat (limited to 'shared-module')
| -rw-r--r-- | shared-module/displayio/Shape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-module/displayio/Shape.c b/shared-module/displayio/Shape.c index ac2abd150..a09191cce 100644 --- a/shared-module/displayio/Shape.c +++ b/shared-module/displayio/Shape.c @@ -49,7 +49,7 @@ void common_hal_displayio_shape_construct(displayio_shape_t *self, uint32_t widt self->half_height = height; self->data = m_malloc(height * sizeof(uint32_t), false); - //for (uint16_t i = 0; i < height; i++) { + for (uint16_t i = 0; i <= height; i++) { self->data[2 * i] = 0; self->data[2 * i + 1] = width; |
