mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add tag for deco dives
Fixes #85 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
bba99277a8
commit
d00c16d4ee
2 changed files with 3 additions and 2 deletions
3
dive.h
3
dive.h
|
@ -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];
|
||||
|
|
|
@ -20,7 +20,7 @@ char *dtag_names[DTAG_NR] = {
|
|||
N_("invalid"), N_("boat"), N_("shore"), N_("drift"), N_("deep"), N_("cavern"),
|
||||
N_("ice"), N_("wreck"), N_("cave"), N_("altitude"), N_("pool"), N_("lake"),
|
||||
N_("river"), N_("night"), N_("freshwater"), N_("training"), N_("teaching"),
|
||||
N_("photo"), N_("video")
|
||||
N_("photo"), N_("video"), N_("deco")
|
||||
};
|
||||
|
||||
static stats_t stats;
|
||||
|
|
Loading…
Add table
Reference in a new issue