From: Steinar H. Gunderson Date: Sat, 16 Nov 2013 10:48:26 +0000 (+0100) Subject: Fix 0.00 showing for long_score, too. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=b6a17e8068a802500c745d0501e3ebd58ab33929;hp=a5d359eaff725889fd3554a7c3b7ac5088eb7c63 Fix 0.00 showing for long_score, too. --- diff --git a/remoteglot.pl b/remoteglot.pl index bb16ebc..c65c7e8 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -1088,6 +1088,9 @@ sub score_sort_key { } else { if (exists($info->{'score_cp' . $mpv})) { my $score = $info->{'score_cp' . $mpv}; + if ($score == 0) { + return " 0.00"; + } if ($invert) { $score = -$score; }