diff options
Diffstat (limited to 'core/profile.h')
-rw-r--r-- | core/profile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/profile.h b/core/profile.h index abac9dd49..21cc263b7 100644 --- a/core/profile.h +++ b/core/profile.h @@ -50,9 +50,9 @@ struct plot_data { double mod, ead, end, eadd; velocity_t velocity; int speed; - struct plot_data *min[3]; - struct plot_data *max[3]; - int avg[3]; + // stats over 3, 6, 9 minute windows: + int min[3], max[3]; // indices into pi->entry[] + int avg[3]; // actual depth average /* values calculated by us */ unsigned int in_deco_calc : 1; int ndl_calc; |