=================================================================== RCS file: /cvs/ace/ace/games/golf.c,v retrieving revision 1.7 retrieving revision 1.8 diff -p -u -r1.7 -r1.8 --- ace/games/golf.c 2012/03/24 18:02:02 1.7 +++ /cvs/ace/ace/games/golf.c 2013/01/11 18:16:34 1.8 @@ -129,9 +129,9 @@ start_again() for (i=0; i<7; i++) for (j=0; j<5; j++) - stack_flip_card(deck, stacks[i]); + stack_flip_card(deck, stacks[i], 0); - stack_flip_card(deck, discard); + stack_flip_card(deck, discard, 0); stack_undo_reset(); show_count(); @@ -245,7 +245,7 @@ click(int x, int y, int b) if (s == deck) { - stack_flip_card(deck, discard); + stack_flip_card(deck, discard, 0); show_count(); set_arrows(); check_for_endgame(); @@ -266,7 +266,7 @@ click(int x, int y, int b) && VALUE(top_discard) != VALUE(top_stack)-1) return; - stack_flip_card(s, discard); + stack_flip_card(s, discard, 0); set_arrows(); check_for_endgame();