Skip to content

Commit

Permalink
Fix residual SIDES -> FACES refactoring error
Browse files Browse the repository at this point in the history
  • Loading branch information
kbuffardi committed Feb 17, 2023
1 parent 2377db8 commit ee2e5a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GameDie.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ GameDie::GameDie(unsigned int num)
{
if( num == 0 )
{
counter.resize(SIDES);
counter.resize(FACES);
}
else{
counter.resize(num);
}
for(int i=0; i<SIDES; i++)
for(int i=0; i<FACES; i++)
{
counter[i] = 0;
}
Expand Down

0 comments on commit ee2e5a3

Please sign in to comment.