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];
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);
}
}
}