mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-05 17:46:25 +02:00
Debug parser
This commit is contained in:
parent
e24ebe0138
commit
57c3437e63
1 changed files with 6 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue