summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.h b/config.h
index a6b7039..099aa22 100644
--- a/config.h
+++ b/config.h
@@ -20,6 +20,7 @@
enum flag
{
+ NONE = 0,
NORMALTIME = 1<<1,
BINARYTIME = 1<<2,
MILITARYTIME = 1<<3,
@@ -39,8 +40,8 @@ struct component
static const struct component components[] ={
/* function flag */
{currenttime, NORMALTIME|SHOWMERIDIEM},
- {battery, 0},
- {charging, 0},
+ {battery, NONE},
+ {charging, NONE},
};
#endif