From 325527f1f2d4c3e8a1648690da349f30f8e79759 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 11 May 2015 18:35:31 +0200 Subject: [PATCH] =?utf8?q?If=20the=20PGN=20has=20no=20clock=20information,?= =?utf8?q?=20explicitly=20delete=20it,=20so=20that=20we=20do=20not=20get?= =?utf8?q?=20=E2=80=9Cdummytime=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- remoteglot.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/remoteglot.pl b/remoteglot.pl index 2a6e2a6..aaaed10 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -1017,6 +1017,9 @@ sub extract_clock { $pos->{'black_clock'} = $1; return; } + + delete $pos->{'white_clock'}; + delete $pos->{'black_clock'}; } sub find_clock_start { -- 2.39.2