(makelost, makenotlost, findlost, struct loststr): Change type to be a

short instead of a char.  This will make lost_type consistent with
ef_type in the rest of the structures.
This commit is contained in:
Ron Koenderink 2006-08-02 21:46:34 +00:00
parent 74b263f3d8
commit 09248d018d
2 changed files with 7 additions and 7 deletions

View file

@ -43,7 +43,7 @@ struct loststr {
natid lost_owner; /* Who lost it */
/* end of part matching struct empobj */
int lost_uid; /* lost ID (assigned, otherwise unused) */
char lost_type; /* Type of thing (ship, plane, nuke, land, sector) */
short lost_type; /* Type of thing (ship, plane, nuke, land, sector) */
short lost_id; /* ID of lost thing */
coord lost_x;
coord lost_y;
@ -54,7 +54,7 @@ struct loststr {
#define putlost(n, p) ef_write(EF_LOST, (n), (p))
/* src/lib/subs/lostsub.c */
extern void makelost(char, natid, short, coord, coord);
extern void makenotlost(char, natid, short, coord, coord);
extern void makelost(short, natid, short, coord, coord);
extern void makenotlost(short, natid, short, coord, coord);
#endif