Skip to content

Commit

Permalink
fixes failure
Browse files Browse the repository at this point in the history
  • Loading branch information
EAOZONE committed Apr 19, 2024
1 parent 69e52d7 commit e78f157
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GameWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ class GameWindow{
window.draw(pausePlayButton.sprite);
window.draw(leaderBoard.sprite);
window.draw(faceButton.sprite);
for (int i = 0; i < 3; i++) {
window.draw(board.getCounter().getDigits()[i]);
}
// for (int i = 0; i < 3; i++) {
// window.draw(board.getCounter().getDigits()[i]);
// }
for(int i = 0; i < numOfCols; i++){
for(int j = 0; j < numOfRows; j++) {
window.draw(board.getBoard()[i][j]->sprite);
Expand Down

0 comments on commit e78f157

Please sign in to comment.