DISPIO: end_x can't be > height of shape

an author must have forgotten to change from height to width after copy paste.
This commit is contained in:
TG-Techie 2019-02-12 17:53:11 -05:00 committed by GitHub
parent f34360bba7
commit 4fbbb999b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ void common_hal_displayio_shape_set_boundary(displayio_shape_t *self, uint16_t y
if (y < 0 || y >= self->height || (self->mirror_y && y > self->half_height)) {
mp_raise_ValueError(translate("y value out of bounds"));
}
if (start_x < 0 || start_x > self->width || end_x < 0 || end_x > self->height) {
if (start_x < 0 || start_x > self->width || end_x < 0 || end_x > self->width) {
mp_raise_ValueError(translate("x value out of bounds"));
}
uint16_t half_width = self->width / 2 - 1 + self->width % 2;