Fixed missing end of line chunk in movetext
This commit is contained in:
parent
ac1c857795
commit
00bf4a44ea
@ -103,7 +103,7 @@ public class PGNGame {
|
||||
if (line.length() + chunk.length() <= 80) line += chunk;
|
||||
else {
|
||||
pw.println(line);
|
||||
line = "";
|
||||
line = chunk;
|
||||
}
|
||||
if (!line.isEmpty()) pw.println(line);
|
||||
}
|
||||
|
Reference in New Issue
Block a user