mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Use temperature_t for temperatures in struct stats_t
Use struct temperature_t for temperatures in struct stats_t and use get_temperature_string() when printing these temperatures for statistics and HTML export. Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
928e7ed869
commit
95a23cf470
8 changed files with 48 additions and 49 deletions
|
|
@ -28,9 +28,9 @@ typedef struct
|
|||
volume_t max_sac;
|
||||
volume_t min_sac;
|
||||
volume_t avg_sac;
|
||||
int max_temp;
|
||||
int min_temp;
|
||||
double combined_temp;
|
||||
temperature_t max_temp;
|
||||
temperature_t min_temp;
|
||||
temperature_sum_t combined_temp;
|
||||
unsigned int combined_count;
|
||||
unsigned int selection_size;
|
||||
unsigned int total_sac_time;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue