diff options
| author | DrNuget <drnuget@outlook.com> | 2025-11-02 01:45:52 +0200 |
|---|---|---|
| committer | DrNuget <drnuget@outlook.com> | 2025-11-02 01:45:52 +0200 |
| commit | 8afd5f50c068bd9a802496455a08c76433b3fd0d (patch) | |
| tree | 3b8b1e7aa0315d7110f89734cd5cd20c037ae887 /brailleboi.h | |
| parent | c0b5e476f5cf98fae12d2b4c80ae9d907669f1e2 (diff) | |
| download | brailleboi-8afd5f50c068bd9a802496455a08c76433b3fd0d.tar.gz | |
change width, height to braille character width, height. also fixes boundary checks
Diffstat (limited to 'brailleboi.h')
| -rw-r--r-- | brailleboi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/brailleboi.h b/brailleboi.h index 1138e09..f06d0da 100644 --- a/brailleboi.h +++ b/brailleboi.h @@ -3,6 +3,7 @@ typedef struct image_buffer { int width, height; + int char_width, char_height; int* contents; } image_buffer; |
