summaryrefslogtreecommitdiff
path: root/shared-module
diff options
context:
space:
mode:
authorKevin Matocha <kmatocha@icloud.com>2020-08-13 20:57:17 -0500
committerKevin Matocha <kmatocha@icloud.com>2020-08-14 13:37:06 -0500
commitba5dedc1df768bfac05db844f6220c4756c24223 (patch)
treef23e9c93dbf9ce301335a5acb95776d5917ab870 /shared-module
parentb1fce9e933275cd9d945ec46c3ea8eaa350e6a67 (diff)
deleted whitespace
Diffstat (limited to 'shared-module')
-rw-r--r--shared-module/displayio/Bitmap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/shared-module/displayio/Bitmap.c b/shared-module/displayio/Bitmap.c
index e581d849d..b470cecc3 100644
--- a/shared-module/displayio/Bitmap.c
+++ b/shared-module/displayio/Bitmap.c
@@ -105,11 +105,10 @@ uint32_t common_hal_displayio_bitmap_get_pixel(displayio_bitmap_t *self, int16_t
return 0;
}
-void common_hal_displayio_bitmap_blit(displayio_bitmap_t *self, int16_t x, int16_t y, displayio_bitmap_t *source,
- int16_t x1, int16_t y1, int16_t x2, int16_t y2, uint32_t skip_index, bool skip_index_none) {
+void common_hal_displayio_bitmap_blit(displayio_bitmap_t *self, int16_t x, int16_t y, displayio_bitmap_t *source,
+ int16_t x1, int16_t y1, int16_t x2, int16_t y2, uint32_t skip_index, bool skip_index_none) {
// Copy complete "source" bitmap into "self" bitmap at location x,y in the "self"
// Add a boolean to determine if all values are copied, or only if non-zero
- //
// If skip_value is encountered in the source bitmap, it will not be copied.
// If skip_value is `None`, then all pixels are copied.