From bb654d6a8510ec73677001d57af4b425e9e86fd5 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 26 Jun 2007 14:59:50 +0200 Subject: [PATCH] Fix display of long castling. --- remoteglot.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/remoteglot.pl b/remoteglot.pl index a2a5e5e..9771780 100644 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -260,7 +260,7 @@ sub prettyprint_pv { } # white long castling - if ($pv eq 'e1b1' && $piece eq 'K') { + if ($pv eq 'e1c1' && $piece eq 'K') { my @nb = @$board; # king @@ -290,7 +290,7 @@ sub prettyprint_pv { } # black long castling - if ($pv eq 'e8b8' && $piece eq 'k') { + if ($pv eq 'e8c8' && $piece eq 'k') { my @nb = @$board; # king -- 2.39.2