diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-12-28 07:33:09 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-12-28 07:33:09 -0800 |
commit | ba72f43e7fd4ce7c9f210cad9a6fcabdf45ccf88 (patch) | |
tree | 1ada092148d41c5da17151c60767a8193f24e733 /dive.h | |
parent | 9bff4eda35d18ca7b1c06d1e85a8994f47e1baea (diff) | |
download | subsurface-ba72f43e7fd4ce7c9f210cad9a6fcabdf45ccf88.tar.gz |
Allow tracking of more weight systems
I never imagined that people would want to track more than 4
weightsystems, but we just had an enhancement request from a user who
tried to enter a 5th system. Let's hope 6 is enough for everyone.
Fixes #383
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -367,7 +367,7 @@ struct divecomputer { }; #define MAX_CYLINDERS (8) -#define MAX_WEIGHTSYSTEMS (4) +#define MAX_WEIGHTSYSTEMS (6) #define W_IDX_PRIMARY 0 #define W_IDX_SECONDARY 1 |