summaryrefslogtreecommitdiff
path: root/shared-module
diff options
context:
space:
mode:
authorKevin Matocha <kmatocha@icloud.com>2021-03-25 09:36:40 -0500
committerKevin Matocha <kmatocha@icloud.com>2021-03-25 09:36:40 -0500
commit3785eb7779f24c8195b137e7221fddc921554068 (patch)
treed65d7b3d2b95c2063e6ee2c8595e77b1cf0c4d5b /shared-module
parentc81007afb098f51c2ab8694720a22d47da0a016e (diff)
correct rectangle size dimensions
Diffstat (limited to 'shared-module')
-rw-r--r--shared-module/vectorio/Rectangle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-module/vectorio/Rectangle.c b/shared-module/vectorio/Rectangle.c
index 5d48cc648..56be5ebb5 100644
--- a/shared-module/vectorio/Rectangle.c
+++ b/shared-module/vectorio/Rectangle.c
@@ -12,7 +12,7 @@ void common_hal_vectorio_rectangle_construct(vectorio_rectangle_t *self, uint32_
uint32_t common_hal_vectorio_rectangle_get_pixel(void *obj, int16_t x, int16_t y) {
vectorio_rectangle_t *self = obj;
- if (x < 0 || x > self->width || y > self->height || y < 0) {
+ if (x < 0 || x >= self->width || y >= self->height || y < 0) {
return 0;
}
return 1;
@@ -21,8 +21,8 @@ uint32_t common_hal_vectorio_rectangle_get_pixel(void *obj, int16_t x, int16_t y
void common_hal_vectorio_rectangle_get_area(void *rectangle, displayio_area_t *out_area) {
vectorio_rectangle_t *self = rectangle;
- out_area->x1 = -1;
- out_area->y1 = -1;
+ out_area->x1 = 0;
+ out_area->y1 = 0;
out_area->x2 = self->width;
out_area->y2 = self->height;
}