From 5558a017d8dae308e025009f3cc013087b6be8e1 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 21 Nov 2013 23:49:25 +0100 Subject: [PATCH 1/1] Fix the zero-score long display again. --- remoteglot.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remoteglot.pl b/remoteglot.pl index 675573d..0522e52 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -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; -- 2.39.2