diff options
| author | Bryan Siepert <bsiepert@gmail.com> | 2019-03-01 07:32:46 -0800 |
|---|---|---|
| committer | Bryan Siepert <bsiepert@gmail.com> | 2019-03-01 07:32:46 -0800 |
| commit | 76dc8e1ac861b11d01c2e82ecfdbaea761c84fd0 (patch) | |
| tree | 69c8e44a0eb23d4217acb075dede26120dce0ced /shared-module/displayio | |
| parent | e9f18122e9a5d118716b454c34e2525342b34708 (diff) | |
fixed typo
Diffstat (limited to 'shared-module/displayio')
| -rw-r--r-- | shared-module/displayio/OnDiskBitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-module/displayio/OnDiskBitmap.c b/shared-module/displayio/OnDiskBitmap.c index 92735e53c..d710bdae0 100644 --- a/shared-module/displayio/OnDiskBitmap.c +++ b/shared-module/displayio/OnDiskBitmap.c @@ -133,7 +133,7 @@ uint32_t common_hal_displayio_ondiskbitmap_get_pixel(displayio_ondiskbitmap_t *s // We don't cache here because the underlying FS caches sectors. f_lseek(&self->file->fp, location); UINT bytes_read; - uint32_t pixel_data = 0; // this name is stale + uint32_t pixel_data = 0; uint32_t result = f_read(&self->file->fp, &pixel_data, bytes_per_pixel, &bytes_read); if (result == FR_OK) { uint32_t tmp = 0; |
