diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-04-09 23:08:47 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-04-09 16:13:28 -0700 |
commit | 51c4a5335b5c371f91ac9c6fd66779b78e1aa890 (patch) | |
tree | 32faf3f9cc8e8eac3ed23cb66a8ed42b253a83e9 /dive.h | |
parent | 83a313f1ee1f09eab9571f978d84a8b55e9471e0 (diff) | |
download | subsurface-51c4a5335b5c371f91ac9c6fd66779b78e1aa890.tar.gz |
Add tags for night and freshwater
Also trim the redundant "Dive" text from "Lake Dive", "Pool Dive", ....
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -42,7 +42,9 @@ #define DTAG_POOL (1 << 10) #define DTAG_LAKE (1 << 11) #define DTAG_RIVER (1 << 12) -#define DTAG_NR 13 +#define DTAG_NIGHT (1 << 13) +#define DTAG_FRESH (1 << 14) +#define DTAG_NR 15 /* defined in statistics.c */ extern char *dtag_names[DTAG_NR]; |