version 1.18 | | version 1.19 |
---|
| | |
/* | | /* |
* static char *rcsid_special_c = | | * static char *rcsid_special_c = |
* "$Id: special.c,v 1.18 2003/02/12 08:04:30 mwedel Exp $"; | | * "$Id: special.c,v 1.19 2003/03/07 07:33:13 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
/* Need to be at least this size, otherwise the load | | /* Need to be at least this size, otherwise the load |
* code will generate new size values which are too large. | | * code will generate new size values which are too large. |
*/ | | */ |
if (g_xsize < 7) g_xsize = 7; | | if (g_xsize < MIN_RANDOM_MAP_SIZE) g_xsize = MIN_RANDOM_MAP_SIZE; |
if (g_ysize < 7) g_ysize = 7; | | if (g_ysize < MIN_RANDOM_MAP_SIZE) g_ysize = MIN_RANDOM_MAP_SIZE; |
| | |
write_parameters_to_string(buf, g_xsize, g_ysize,RP->wallstyle,RP->floorstyle,mon, | | write_parameters_to_string(buf, g_xsize, g_ysize,RP->wallstyle,RP->floorstyle,mon, |
"none",style,decor,"none",RP->exitstyle,0,0, | | "none",style,decor,"none",RP->exitstyle,0,0, |