diff options
author | Maximilian Güntner <maximilian.guentner@gmail.com> | 2012-08-22 01:23:54 +0200 |
---|---|---|
committer | Maximilian Güntner <maximilian.guentner@gmail.com> | 2012-08-22 01:23:54 +0200 |
commit | 1c1ad77f836b58244b3160b9bd13cad2012abdab (patch) | |
tree | d07a1bc6535bd022b450403de01346892412439f /profile.c | |
parent | 0c0ec7e4f60d9678c3950757ccb8f791f10d033c (diff) | |
download | subsurface-1c1ad77f836b58244b3160b9bd13cad2012abdab.tar.gz |
plot the time with a fixed padding (leading zero)
Signed-off-by: Maximilian Güntner <maximilian.guentner@gmail.com>
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -498,7 +498,7 @@ static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi if (maxtime < 600) { /* Be a bit more verbose with shorter dives */ 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 { /* Only render the time on every second marker for normal dives */ for (i = incr; i < maxtime; i += 2 * incr) |