From 276a99841f473629e1ab76b3a032845101007d51 Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Sat, 7 May 2005 19:49:04 +0000 Subject: [PATCH] (MINES_MAX): Change to 32767. MINES_MAX was not adjusted from 65535 when sct_mines was changed from unsigned short to short in rev. 1.15. --- include/sect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sect.h b/include/sect.h index e6cdc3b6..94e1c9ae 100644 --- a/include/sect.h +++ b/include/sect.h @@ -187,7 +187,7 @@ extern struct dchrstr bigcity_dchr; /* maximum item amount, must fit into sct_item[], sct_del[], sct_dist[] */ #define ITEM_MAX 9999 /* maximum number of mines, must fit into struct sctstr member sct_mines */ -#define MINES_MAX 65535 +#define MINES_MAX 32767 /* maximum number of che, must fit into struct sctstr member sct_che */ #define CHE_MAX 255 /* maximum fallout, must fit into struct sctstr member sct_fallout */