Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Bierema committed Jul 9, 2017
2 parents faf82d2 + dc53d98 commit a8a4567
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion fileformats/trf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,16 @@ namespace fileformats
outputStream << "001 "
<< std::setw(4)
<< utility::uintstringconversion::toString(player.id + 1u)
<< std::setw(44)
<< std::setw(10)
<< "Test"
<< std::setw(4)
<< std::setfill('0')
<< utility::uintstringconversion::toString(player.id + 1u)
<< " Player"
<< std::setw(4)
<< utility::uintstringconversion::toString(player.id + 1u)
<< std::setfill(' ')
<< std::setw(19)
<< utility::uintstringconversion::toString(player.rating)
<< std::setw(28)
<< ""
Expand Down

0 comments on commit a8a4567

Please sign in to comment.