mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 02:23:25 +00:00
Add back mysteriously deleted "} else {" line
Commit 6c52e8a2e5
("Add plotting of the deco ceiling") for some
totally unexplained reason deleted one "else" statement, resulting in
some plot events not having a time at all. Which causes various really
odd issues if you hit that situation, including divide-by-zero etc due
to the difference in times between events being nonsensical.
It's just some odd mistake that was entirely unrelated to the other
changes in that commit.
Add the missing line back in.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
9e2b8edb4d
commit
7fc1213aab
1 changed files with 1 additions and 0 deletions
|
@ -1727,6 +1727,7 @@ static struct plot_info *create_plot_info(struct dive *dive, int nr_samples, str
|
|||
if (ev->time.seconds == sample->time.seconds - 1) {
|
||||
entry->sec = ev->time.seconds - 1;
|
||||
(entry+1)->sec = ev->time.seconds;
|
||||
} else {
|
||||
entry->sec = ev->time.seconds;
|
||||
(entry+1)->sec = ev->time.seconds + 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue