Abolish as many undifferentiated long variables as possible.
Simple counter become ints.
This commit is contained in:
parent
7c3f834bca
commit
609159ad6d
6 changed files with 27 additions and 26 deletions
|
@ -176,7 +176,7 @@ static int attack(struct command_t *command)
|
|||
return GO_CLEAROBJ;
|
||||
}
|
||||
|
||||
static int bigwords(long id)
|
||||
static int bigwords(vocab_t id)
|
||||
/* FEE FIE FOE FOO (AND FUM). Advance to next state if given in proper order.
|
||||
* Look up foo in special section of vocab to determine which word we've got.
|
||||
* Last word zips the eggs back to the giant room (unless already there). */
|
||||
|
@ -910,7 +910,7 @@ static int light(verb_t verb, obj_t obj)
|
|||
static int listen(void)
|
||||
/* Listen. Intransitive only. Print stuff based on object sound proprties. */
|
||||
{
|
||||
long sound = locations[game.loc].sound;
|
||||
vocab_t sound = locations[game.loc].sound;
|
||||
if (sound != SILENT) {
|
||||
rspeak(sound);
|
||||
if (!locations[game.loc].loud)
|
||||
|
@ -1163,7 +1163,7 @@ static int say(struct command_t *command)
|
|||
return GO_CLEAROBJ;
|
||||
}
|
||||
|
||||
static int throw_support(long spk)
|
||||
static int throw_support(vocab_t spk)
|
||||
{
|
||||
rspeak(spk);
|
||||
drop(AXE, game.loc);
|
||||
|
@ -1221,7 +1221,7 @@ static int throw (struct command_t *command)
|
|||
if (randrange(NDWARVES + 1) < game.dflag) {
|
||||
return throw_support(DWARF_DODGES);
|
||||
} else {
|
||||
long i = atdwrf(game.loc);
|
||||
int i = atdwrf(game.loc);
|
||||
game.dseen[i] = false;
|
||||
game.dloc[i] = LOC_NOWHERE;
|
||||
return throw_support((++game.dkill == 1) ?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue