mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-12-27 09:58:08 +01:00
Fixed a warning
This commit is contained in:
parent
90badeca21
commit
fa493d4135
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ int Game::helperSetRackRandom(unsigned int p, bool iCheck, set_rack_mode mode)
|
|||
}
|
||||
pld.resetNew();
|
||||
}
|
||||
else if (mode == RACK_NEW && nold == 0 || mode == RACK_ALL)
|
||||
else if ((mode == RACK_NEW && nold == 0) || mode == RACK_ALL)
|
||||
{
|
||||
// Replace all the tiles in the bag before choosing random ones
|
||||
vector<Tile> tiles;
|
||||
|
|
Loading…
Reference in a new issue