From 57c3437e6330df04eab2e076d9bbebfd10ea3f3e Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 27 Jan 2022 08:50:48 +0100 Subject: [PATCH] Debug parser --- src/PGN.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/PGN.cpp b/src/PGN.cpp index e82179f..0f15fb3 100644 --- a/src/PGN.cpp +++ b/src/PGN.cpp @@ -329,9 +329,12 @@ loctype PGN::GotoNextToken(loctype loc) { } c = pgn_content[loc]; if (c == '%' || c == ';') { - loc = GotoEOL(loc)+1; - if (IS_EOF) { - return (loc); + loc = GotoEOL(loc); + if(!IS_EOF){ + c=pgn_content[loc]; + } + else{ + return(loc); } } }