=================================================================== RCS file: /cvs/ace/ace/games/solitaire.c,v retrieving revision 1.17 retrieving revision 1.18 diff -p -u -r1.17 -r1.18 --- ace/games/solitaire.c 2013/01/12 11:43:25 1.17 +++ /cvs/ace/ace/games/solitaire.c 2013/01/12 12:04:35 1.18 @@ -418,11 +418,11 @@ click(int x, int y, int b) // abort drag on click of other mousebutton if (drag_active) { - stack_drop(dest_stack, last_n); + stack_drop(dest_stack, last_n, 0); drag_active = 0; return; }; - + if ((cp == youlose || cp == youwin) && (x > table_width/2-cp->w/2 && x < table_width/2+cp->w/2 @@ -625,7 +625,7 @@ drop(int x, int y, int b) drag_active = 0; - stack_drop(dest_stack, last_n); + stack_drop(dest_stack, last_n, 0); drag_active = 0;