Skip to content

Commit

Permalink
Add blank line between PGN headers and game text
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkZH committed Jan 27, 2024
1 parent 28fe83c commit a9eb8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Game/Board.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ void Board::print_game_record(const std::vector<const Move*>& game_record_listin
}
game_text << " " << actual_result.game_ending_annotation();

const auto pgn_text = header_text.str() + String::word_wrap(game_text.str(), 80) + "\n\n\n";
const auto pgn_text = header_text.str() + "\n" + String::word_wrap(game_text.str(), 80) + "\n\n\n";

if(file_name.empty())
{
Expand Down

0 comments on commit a9eb8c7

Please sign in to comment.