=================================================================== RCS file: /cvs/ace/ace/games/golf.c,v retrieving revision 1.2 retrieving revision 1.3 diff -p -u -r1.2 -r1.3 --- ace/games/golf.c 2001/04/08 03:17:31 1.2 +++ /cvs/ace/ace/games/golf.c 2001/05/06 04:27:09 1.3 @@ -22,7 +22,9 @@ #define H CARD_HEIGHT #define M CARD_MARGIN #define R CARD_FAN_TBRIGHT -#define D CARD_FAN_DOWN +#define D stack_fan_down + +extern int stack_fan_down; Picture *splash, *youwin, *youlose; Picture *arrow, *no_arrow; @@ -39,10 +41,11 @@ int main(int argc, char **argv) { int alt_width = 3*M+2*W+51*R; + init_ace(argc, argv); table_width = 8*M+7*W; if (table_width < alt_width) table_width = alt_width; - table_height = 3*M+5*D+2*H; - init_table(argc, argv, table_width, table_height); + table_height = 3*M+5*CARD_FAN_DOWN+2*H; + init_table(table_width, table_height); table_loop(); }