version 1.19 | | version 1.20 |
---|
| | |
/* | | /* |
* static char *rcsid_random_map_c = | | * static char *rcsid_random_map_c = |
* "$Id: random_map.c,v 1.19 2001/04/26 05:37:10 mardahl Exp $"; | | * "$Id: random_map.c,v 1.20 2001/05/03 18:29:35 mardahl Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
unblock_exits(theMap,layout,RP); | | unblock_exits(theMap,layout,RP); |
/* fclose(OutFile); */ | | /* fclose(OutFile); */ |
/*new_save_map(theMap,1);*/ | | /*new_save_map(theMap,1);*/ |
| | |
| | /*free the layout */ |
| | { int i; |
| | for(i=0;i<RP->Xsize;i++) |
| | free(layout[i]); |
| | free(layout); |
| | } |
| | |
return theMap; | | return theMap; |
} | | } |
| | |