summaryrefslogtreecommitdiff
path: root/src/screen.h
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2024-08-26 21:19:46 -0500
committer@syxhe <https://t.me/syxhe>2024-08-26 21:19:46 -0500
commite53a059c188c72bf7eea7a966606fe086e4c2d04 (patch)
treebd9ced676949916db79025da5fcf6c37636fb69f /src/screen.h
parent293b1eb5ebf9f486ce9a89398319f646f2a29c3b (diff)
Box
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/screen.h b/src/screen.h
index 93297ee..9ffff20 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -46,7 +46,9 @@ enum custom_colors {
46}; 46};
47 47
48enum customcolor_pairs { 48enum customcolor_pairs {
49 CCP_UNDEFINED, 49 CCP_UNDEFINED = -1,
50
51 CCP_CURSES_DEFAULT = 0,
50 52
51 CCP_TESTING, 53 CCP_TESTING,
52 CCP_BANNER, 54 CCP_BANNER,
@@ -71,11 +73,7 @@ struct slotholder {
71 int slotx; 73 int slotx;
72 int sloty; 74 int sloty;
73 75
74 struct subslot { 76 WINDOW *subslot[3];
75 WINDOW *subslot;
76 enum customcolor_pairs color;
77
78 } subslots[3];
79}; 77};
80 78
81struct funcholder { 79struct funcholder {