Skip to content

Commit 76dc8e1

Browse files
committed
fixed typo
1 parent e9f1812 commit 76dc8e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-module/displayio/OnDiskBitmap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ uint32_t common_hal_displayio_ondiskbitmap_get_pixel(displayio_ondiskbitmap_t *s
133133
// We don't cache here because the underlying FS caches sectors.
134134
f_lseek(&self->file->fp, location);
135135
UINT bytes_read;
136-
uint32_t pixel_data = 0; // this name is stale
136+
uint32_t pixel_data = 0;
137137
uint32_t result = f_read(&self->file->fp, &pixel_data, bytes_per_pixel, &bytes_read);
138138
if (result == FR_OK) {
139139
uint32_t tmp = 0;

0 commit comments

Comments
 (0)