dum dum rectangle

This commit is contained in:
KikooDX 2021-11-17 15:34:28 +01:00
parent edc6fb1c5b
commit 2403783b3a
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
/* simple functions */
#define dclear(c) ClearBackground(c)
#define drect(x1, y1, x2, y2, c) \
DrawRectangle(x1, y1, (x2) - (x1), (y2) - (y1), c)
DrawRectangle(x1, y1, (x2) - (x1) + 1, (y2) - (y1) + 1, c)
/* dummy types */
typedef int bopti_image_t;
typedef int font_t;