Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions shared-module/displayio/TileGrid.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ bool displayio_tilegrid_get_previous_area(displayio_tilegrid_t *self, displayio_
}

void _update_current_x(displayio_tilegrid_t *self) {
int16_t width;
uint16_t width;
if (self->transpose_xy) {
width = self->pixel_height;
} else {
Expand All @@ -130,7 +130,7 @@ void _update_current_x(displayio_tilegrid_t *self) {
}

void _update_current_y(displayio_tilegrid_t *self) {
int16_t height;
uint16_t height;
if (self->transpose_xy) {
height = self->pixel_width;
} else {
Expand Down