Correct using player for turn and turn for player
This commit is contained in:
parent
024253bb84
commit
5d07bb03f3
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ int main(int argc, char* argv[])
|
|||
{
|
||||
// Construct the player order filename
|
||||
char playerOrderFileName[128];
|
||||
snprintf(playerOrderFileName, 128, "%s/Player_%i_Turn_%i.txt", gameDir.c_str(), game.GetTurn(), (int) player);
|
||||
snprintf(playerOrderFileName, 128, "%s/Player_%i_Turn_%i.txt", gameDir.c_str(), (int) player, game.GetTurn());
|
||||
|
||||
// Wait for the player order file to be created
|
||||
std::cout<<"Waiting for "<< playerOrderFileName <<std::endl;
|
||||
|
|
Loading…
Add table
Reference in a new issue