about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-16 22:39:15 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-16 22:39:21 +0100
commit30b11eb8233c8cfda05b6f976df14421b9873960 (patch)
treeaa94f7666e44f7cc8e6cf2c4dc212371c8e7f9d5
parentff0e34179e35e89c48486e4d3cd6afc87cc874b8 (diff)
feat(bitmap): make bs_view_t dimensions ints as well
-rw-r--r--include/buchstabensuppe/bitmap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/buchstabensuppe/bitmap.h b/include/buchstabensuppe/bitmap.h
index 681dd90..5b4af8d 100644
--- a/include/buchstabensuppe/bitmap.h
+++ b/include/buchstabensuppe/bitmap.h
@@ -34,10 +34,10 @@ typedef struct bs_bitmap {
  */
 typedef struct bs_bm_view {
   bs_bitmap_t  bs_view_bitmap;
-  unsigned int bs_view_offset_x;
-  unsigned int bs_view_offset_y;
-  unsigned int bs_view_width;
-  unsigned int bs_view_height;
+  int bs_view_offset_x;
+  int bs_view_offset_y;
+  int bs_view_width;
+  int bs_view_height;
 } bs_view_t;
 
 /*!