Debug parser

This commit is contained in:
Loic Guegan 2022-01-27 08:50:48 +01:00
parent e24ebe0138
commit 57c3437e63

View file

@ -329,9 +329,12 @@ loctype PGN::GotoNextToken(loctype loc) {
} }
c = pgn_content[loc]; c = pgn_content[loc];
if (c == '%' || c == ';') { if (c == '%' || c == ';') {
loc = GotoEOL(loc)+1; loc = GotoEOL(loc);
if (IS_EOF) { if(!IS_EOF){
return (loc); c=pgn_content[loc];
}
else{
return(loc);
} }
} }
} }