From 8afd5f50c068bd9a802496455a08c76433b3fd0d Mon Sep 17 00:00:00 2001 From: DrNuget Date: Sun, 2 Nov 2025 01:45:52 +0200 Subject: change width, height to braille character width, height. also fixes boundary checks --- brailleboi.h | 1 + 1 file changed, 1 insertion(+) (limited to 'brailleboi.h') 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; -- cgit v1.2.3