Skip to content

Commit

Permalink
Updated GameOfLife.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Tugamer89 committed Jan 13, 2023
1 parent e9d91ec commit a3b36c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GameOfLife/GameOfLife.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void GameOfLife::start() {
gen++;
printGrid();
liveCells = countLiveCells();
system(("title Tuga's Game of Life - Gen: " + to_string(gen) + " - Live cells: " + to_string(liveCells) + "/" + to_string(totalCells)).c_str());
system(("title Tugamer89's Game of Life - Gen: " + to_string(gen) + " - Live cells: " + to_string(liveCells) + "/" + to_string(totalCells)).c_str());
Sleep(SLEEP_MS);
}

Expand Down

0 comments on commit a3b36c2

Please # to comment.