version 1.7 | | version 1.8 |
---|
| | |
/* | | /* |
* static char *rcsid_arch_c = | | * static char *rcsid_arch_c = |
* "$Id: exp.c,v 1.7 2003/09/13 05:01:27 mwedel Exp $"; | | * "$Id: exp.c,v 1.8 2004/03/26 21:59:25 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
* the table otherwise is probably in an inconsistent state | | * the table otherwise is probably in an inconsistent state |
*/ | | */ |
if (tmpexp <= lastexp) { | | if (tmpexp <= lastexp) { |
| | #ifndef WIN32 |
LOG(llevError,"Experience for level %d is lower than previous level (%lld <= %lld)\n", | | LOG(llevError,"Experience for level %d is lower than previous level (%lld <= %lld)\n", |
lastlevel + 1, tmpexp, lastexp); | | lastlevel + 1, tmpexp, lastexp); |
| | #else |
| | LOG(llevError,"Experience for level %d is lower than previous level (%I64d <= %I64d)\n", |
| | lastlevel + 1, tmpexp, lastexp); |
| | #endif |
exit(1); | | exit(1); |
} | | } |
lastlevel++; | | lastlevel++; |