version 1.40 | | version 1.41 |
---|
| | |
/* | | /* |
* 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 $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
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. |
| | |
| | |
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; |