mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
plot the time with a fixed padding (leading zero)
Signed-off-by: Maximilian Güntner <maximilian.guentner@gmail.com>
This commit is contained in:
parent
0c0ec7e4f6
commit
1c1ad77f83
1 changed files with 1 additions and 1 deletions
|
@ -498,7 +498,7 @@ static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi
|
||||||
if (maxtime < 600) {
|
if (maxtime < 600) {
|
||||||
/* Be a bit more verbose with shorter dives */
|
/* Be a bit more verbose with shorter dives */
|
||||||
for (i = incr; i < maxtime; i += incr)
|
for (i = incr; i < maxtime; i += incr)
|
||||||
plot_text(gc, &tro, i, 1, "%d:%d", i/60, i%60);
|
plot_text(gc, &tro, i, 1, "%02d:%02d", i/60, i%60);
|
||||||
} else {
|
} else {
|
||||||
/* Only render the time on every second marker for normal dives */
|
/* Only render the time on every second marker for normal dives */
|
||||||
for (i = incr; i < maxtime; i += 2 * incr)
|
for (i = incr; i < maxtime; i += 2 * incr)
|
||||||
|
|
Loading…
Add table
Reference in a new issue