comparison Discovery/Src/vpm.c @ 305:305f251cc981 cleanup-4

bugfix, consistency: show deco/NDL really after 1 minute divetime Related to commit 02d10d955be2. We intended to show deco/NDL after 1 minute divetime, but we included the surface seconds as well. And yes, this can hardly be called a bugfix. Its simply more consistent to relate the actual divetime on the display (which is without surface seconds) with the appearance of deco/NDL after exactly 1 minute, instead of about 1 minute. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
author Jan Mulder <jlmulder@xs4all.nl>
date Tue, 21 May 2019 11:11:05 +0200
parents 02d10d955be2
children b7d93ff6b3b2
comparison
equal deleted inserted replaced
304:43b44f8d4fb0 305:305f251cc981
238 for(int i=0;i<DECOINFO_STRUCT_MAX_STOPS;i++) 238 for(int i=0;i<DECOINFO_STRUCT_MAX_STOPS;i++)
239 { 239 {
240 pDECOINFO->output_stop_length_seconds[i] = 0; 240 pDECOINFO->output_stop_length_seconds[i] = 0;
241 } 241 }
242 242
243 if(pINPUT->dive_time_seconds < 60) 243 if(pINPUT->dive_time_seconds_without_surface_time < 60)
244 { 244 {
245 vpm_calc_status = CALC_NDL; 245 vpm_calc_status = CALC_NDL;
246 return vpm_calc_status; 246 return vpm_calc_status;
247 } 247 }
248 pVpm = pVPM; 248 pVpm = pVPM;