Corrected bug

This commit is contained in:
Clement Roblot 2024-08-02 22:43:36 +07:00
parent c1c6afc0ba
commit 719a2388f5

View File

@ -35,10 +35,10 @@ enum BorderStyle {
typedef struct { typedef struct {
int startx; uint16_t startx = 0;
int endx; uint16_t endx = 0;
int starty; uint16_t starty = 0;
int endy; uint16_t endy = 0;
} Region; } Region;
// Pipe elements into decorator togethers. // Pipe elements into decorator togethers.