diff options
Diffstat (limited to 'core/display.h')
-rw-r--r-- | core/display.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/display.h b/core/display.h index 3e3a9531e..8c6223be6 100644 --- a/core/display.h +++ b/core/display.h @@ -12,6 +12,7 @@ extern "C" { * and one-, two- and three-minute minimums and maximums */ struct plot_info { int nr; + int nr_cylinders; int maxtime; int meandepth, maxdepth; int minpressure, maxpressure; @@ -21,7 +22,7 @@ struct plot_info { double endtempcoord; double maxpp; struct plot_data *entry; - struct plot_pressure_data *pressures; /* MAX_CYLINDERS blocks of nr entries. */ + struct plot_pressure_data *pressures; /* cylinders.nr blocks of nr entries. */ }; extern struct divecomputer *select_dc(struct dive *); |