]> git.sesse.net Git - remoteglot/commitdiff
Fix the zero-score long display again.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 21 Nov 2013 22:49:25 +0000 (23:49 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 21 Nov 2013 22:49:25 +0000 (23:49 +0100)
remoteglot.pl

index 675573def081eabb2c1c6ee204456abfaf067d42..0522e52888fca392a6f0936d337d76719c79e417 100755 (executable)
@@ -1178,7 +1178,7 @@ sub long_score {
                if (exists($info->{'score_cp' . $mpv})) {
                        my $score = $info->{'score_cp' . $mpv} * 0.01;
                        if ($score == 0) {
-                               return " 0.00";
+                               return "Score:  0.00";
                        }
                        if ($pos->{'toplay'} eq 'B') {
                                $score = -$score;