diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2013-04-09 22:40:16 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-04-09 13:56:33 -0700 |
commit | 7cacbdf76222018c7287efd401b4e37a20af3ce4 (patch) | |
tree | 222157c38a6f0eb2320b6f77c9cade4b54435c1f /dive.h | |
parent | 5f03a6f63134ea82ea2713563868d3b6b0d0db23 (diff) | |
download | subsurface-7cacbdf76222018c7287efd401b4e37a20af3ce4.tar.gz |
Add lake and river to the list of supported tags
[Dirk Hohndel: minor cleanups]
Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
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
@@ -40,7 +40,9 @@ #define DTAG_CAVE (1 << 8) #define DTAG_ALTITUDE (1 << 9) #define DTAG_POOL (1 << 10) -#define DTAG_NR 11 +#define DTAG_LAKE (1 << 11) +#define DTAG_RIVER (1 << 12) +#define DTAG_NR 13 /* defined in statistics.c */ extern char *dtag_names[DTAG_NR]; |