]> www.fi.muni.cz Git - slotcarman.git/commitdiff
Time difference prefix + instead of -
authorJan "Yenya" Kasprzak <kas@fi.muni.cz>
Sun, 8 May 2011 20:12:40 +0000 (22:12 +0200)
committerJan "Yenya" Kasprzak <kas@fi.muni.cz>
Sun, 8 May 2011 20:12:40 +0000 (22:12 +0200)
The driver which is behind the leader has bigger time, so the difference
should be annotated as e.g. "+0.15" or "+2 laps" instead of -.

SCX/GUI.pm

index 41e911242e6c3619ffc7c1c1dfb8f46795a54aca..af9f769493d4ae7bdca18409ed15ac0589b79106 100755 (executable)
@@ -273,9 +273,9 @@ sub set_distance {
        if (defined $time) {
                $text = format_race_time($time);
        } elsif (defined $time_diff) {
-               $text = '' . format_lap_time($time_diff);
+               $text = '+' . format_lap_time($time_diff);
        } elsif (defined $lap_diff) {
-               $text = '' . $lap_diff
+               $text = '+' . $lap_diff
                        . ($lap_diff == 1 ? ' lap' : ' laps');
        }