mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-06 10:06: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];
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue