diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-14 21:52:55 -0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-14 21:52:55 -0400 |
commit | d00c16d4eef4c9f37620a0042645013610de4d2a (patch) | |
tree | b2d0ad428a7be463be21037d6de5c696d9bf485d /dive.h | |
parent | bba99277a875f42ac1c5a895a8c3ed336bd90280 (diff) | |
download | subsurface-d00c16d4eef4c9f37620a0042645013610de4d2a.tar.gz |
Add tag for deco dives
Fixes #85
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -47,7 +47,8 @@ #define DTAG_INSTRUCTOR (1 << 16) #define DTAG_PHOTO (1 << 17) #define DTAG_VIDEO (1 << 18) -#define DTAG_NR 19 +#define DTAG_DECO (1 << 19) +#define DTAG_NR 20 /* defined in statistics.c */ extern char *dtag_names[DTAG_NR]; extern int dtag_shown[DTAG_NR]; |