From: Steinar H. Gunderson Date: Sat, 16 Nov 2013 10:43:47 +0000 (+0100) Subject: Show score_cp=0 as 0.00, not +0.00 or -0.00. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=a5d359eaff725889fd3554a7c3b7ac5088eb7c63;hp=b93f24c566fd338ac0fda226632c05bc3af8f2ac Show score_cp=0 as 0.00, not +0.00 or -0.00. --- diff --git a/remoteglot.pl b/remoteglot.pl index b8377cc..bb16ebc 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -1058,6 +1058,9 @@ sub short_score { } else { if (exists($info->{'score_cp' . $mpv})) { my $score = $info->{'score_cp' . $mpv} * 0.01; + if ($score == 0) { + return " 0.00"; + } if ($invert) { $score = -$score; }