summaryrefslogtreecommitdiffstats
path: root/core/libdivecomputer.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/libdivecomputer.c')
-rw-r--r--core/libdivecomputer.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/libdivecomputer.c b/core/libdivecomputer.c
index b67b95581..14fe42a6e 100644
--- a/core/libdivecomputer.c
+++ b/core/libdivecomputer.c
@@ -735,9 +735,12 @@ static dc_status_t libdc_header_parser(dc_parser_t *parser, device_data_t *devda
case DC_DIVEMODE_OC: /* Open circuit */
dive->dc.divemode = OC;
break;
- case DC_DIVEMODE_CCR: /* Closed circuit */
+ case DC_DIVEMODE_CCR: /* Closed circuit rebreather*/
dive->dc.divemode = CCR;
break;
+ case DC_DIVEMODE_SCR: /* Semi-closed circuit rebreather */
+ dive->dc.divemode = PSCR;
+ break;
}
#endif