From: Steinar H. Gunderson Date: Fri, 14 Nov 2014 18:15:36 +0000 (+0100) Subject: Fix a typo in mate sorting. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=ad566e0ccb947e1c2e3e81580edacaf88765701b;ds=sidebyside Fix a typo in mate sorting. --- diff --git a/remoteglot.pl b/remoteglot.pl index a924701..4ccdac7 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -694,10 +694,10 @@ sub score_sort_key { my $score; if ($mate > 0) { # Side to move mates - $mate = 99999 - $mate; + $score = 99999 - $mate; } else { # Side to move is getting mated (note the double negative for $mate) - $mate = -99999 - $mate; + $score = -99999 - $mate; } if ($invert) { $score = -$score;