summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cfgparser.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cfgparser.h b/cfgparser.h
index 63ab61f0d8..a955314a3e 100644
--- a/cfgparser.h
+++ b/cfgparser.h
@@ -13,6 +13,8 @@
#define CONF_TYPE_FUNC_PARAM 5
#define CONF_TYPE_PRINT 6
#define CONF_TYPE_FUNC_FULL 7
+#define CONF_TYPE_SUBCONFIG 8
+
#define ERR_NOT_AN_OPTION -1
@@ -31,7 +33,7 @@
struct config {
char *name;
void *p;
- unsigned int type :3;
+ unsigned int type :4;
unsigned int flags:4;
float min,max;
};