define variable before it's first used.

This commit is contained in:
Eric House 2011-11-28 18:21:46 -08:00
parent e5a943eecb
commit 42d1d2f7bd

View file

@ -42,6 +42,11 @@
#define VSIZE(arr) (sizeof(arr)/sizeof(arr[0]))
#ifndef MAX_ROWS
# define MAX_ROWS 16
#endif
#define MAX_COLS MAX_ROWS
#if MAX_COLS > 16
# define STREAM_VERS_BIGBOARD 0x12
#endif
@ -146,10 +151,6 @@ typedef enum {
} XWTimerReason;
#define MAX_NUM_PLAYERS 4
#ifndef MAX_ROWS
# define MAX_ROWS 16
#endif
#define MAX_COLS MAX_ROWS
#ifdef EIGHT_TILES
# define MAX_TRAY_TILES 8
#else