Difference for common/map.c from version 1.70 to 1.71


version 1.70 version 1.71
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_map_c =   * static char *rcsid_map_c =
  *   "$Id: map.c,v 1.70 2005/03/06 20:38:52 akirschbaum Exp $";   *   "$Id: map.c,v 1.71 2005/03/15 21:06:19 ryo_saeba Exp $";
  */   */
   
 /*  /*
Line 717
 
Line 717
      m->fixed_resettime = atoi(value);       m->fixed_resettime = atoi(value);
  } else if (!strcmp(key,"unique")) {   } else if (!strcmp(key,"unique")) {
      m->unique = atoi(value);       m->unique = atoi(value);
    } else if (!strcmp(key,"region")) {
        m->region = get_region_by_name(value);
  } else if (!strcmp(key,"outdoor")) {   } else if (!strcmp(key,"outdoor")) {
      m->outdoor = atoi(value);       m->outdoor = atoi(value);
  } else if (!strcmp(key, "temp")) {   } else if (!strcmp(key, "temp")) {
Line 1070
 
Line 1072
      * or a difficulty value we generated when the map was first loaded       * or a difficulty value we generated when the map was first loaded
      */       */
     if (m->difficulty) fprintf(fp,"difficulty %d\n", m->difficulty);      if (m->difficulty) fprintf(fp,"difficulty %d\n", m->difficulty);
       if (m->region) fprintf(fp,"region %d\n", m->region);
     if (m->darkness) fprintf(fp,"darkness %d\n", m->darkness);      if (m->darkness) fprintf(fp,"darkness %d\n", m->darkness);
     if (m->width) fprintf(fp,"width %d\n", m->width);      if (m->width) fprintf(fp,"width %d\n", m->width);
     if (m->height) fprintf(fp,"height %d\n", m->height);      if (m->height) fprintf(fp,"height %d\n", m->height);


Legend:
line(s) removed in v.1.70 
line(s) changed
 line(s) added in v.1.71

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:13