summaryrefslogtreecommitdiff
path: root/src/screen.h
diff options
context:
space:
mode:
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 {