Difference for include/global.h from version 1.40 to 1.41


version 1.40 version 1.41
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_global_h =   * static char *rcsid_global_h =
  *   "$Id: global.h,v 1.40 2002/12/25 06:45:46 garbled Exp $";   *   "$Id: global.h,v 1.41 2003/03/08 05:35:32 mwedel Exp $";
  */   */
   
 /*  /*
Line 59
 
Line 59
 typedef signed char sint8;  typedef signed char sint8;
 typedef unsigned short Fontindex;  typedef unsigned short Fontindex;
   
   #if SIZEOF_LONG == 8
   typedef unsigned long     uint64;
   typedef signed long     sint64;
   #elif SIZEOF_LONG_LONG == 8
   typedef unsigned long long uint64;
   typedef signed long long sint64;
   #else
   error do not know how to get a 64 bit value on this system.
   error correct and send mail to crossfire-devel on how to do this
   #endif
   
   
   
   
 /* global stuff used by new skill/experience system -b.t.  /* global stuff used by new skill/experience system -b.t.
Line 331
 
Line 343
   
     char    *emergency_mapname;     /* map to return players to in emergency */      char    *emergency_mapname;     /* map to return players to in emergency */
     uint16  emergency_x, emergency_y; /* coordinates to use on that map */      uint16  emergency_x, emergency_y; /* coordinates to use on that map */
   
       sint16  max_level;     /* This is read out of exp_table */
 } Settings;  } Settings;
   
 extern Settings settings;  extern Settings settings;


Legend:
line(s) removed in v.1.40 
line(s) changed
 line(s) added in v.1.41

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