diff options
Diffstat (limited to 'games/mille/move.c')
-rw-r--r-- | games/mille/move.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/mille/move.c b/games/mille/move.c index c7c1a007a83..d05befb82b8 100644 --- a/games/mille/move.c +++ b/games/mille/move.c @@ -339,7 +339,7 @@ protected: if (pp == &Player[PLAYER]) account(card); pp->hand[Card_no] = C_INIT; - Next = (Next == -1 ? FALSE : TRUE); + Next = (Next == (bool)-1 ? FALSE : TRUE); return TRUE; } |