Use int instead of long for money

Code dealing with money mixes int and long pretty haphazardly.
Harmless, because practical amounts of money fit into int on any
machine capable of running the server.  Clean up anyway.
This commit is contained in:
Markus Armbruster 2013-01-13 17:59:29 +01:00
parent 5ed02791f5
commit 5f46ced826
24 changed files with 73 additions and 73 deletions

View file

@ -48,7 +48,7 @@ shark(void)
struct natstr *natp;
struct natstr *oldie;
double owed;
long payment;
int payment;
char buf[1024];
if (!opt_LOANS) {
@ -78,7 +78,7 @@ shark(void)
}
pr("That loan is worth $%.2f.\n", owed);
natp = getnatp(player->cnum);
payment = (long)ceil(owed * (1.0 + loan.l_irate / 100.0));
payment = (int)ceil(owed * (1.0 + loan.l_irate / 100.0));
if (payment > natp->nat_money - 100.0) {
pr("You do not have enough to cover that loan\n");
return RET_FAIL;
@ -87,7 +87,7 @@ shark(void)
"%s bought loan #%d. You now owe him!\n",
cname(player->cnum), arg);
wu(0, loan.l_loner,
"%s bought loan #%d out from under you for %ld\n",
"%s bought loan #%d out from under you for %d\n",
cname(player->cnum), arg, payment);
pr("You now own loan #%d. Go break some legs.\n", arg);
}