(lndstr, natstr, shpstr): Fix string types from s_char[] to char[].

They were declared NSC_STRINGY in their selector descriptors, and
NSC_STRINGY is specified to represent char[].
(player): Get rid of s_char.
This commit is contained in:
Markus Armbruster 2005-10-03 10:35:44 +00:00
parent 30a4437714
commit 717b8e96be
4 changed files with 13 additions and 13 deletions

View file

@ -69,7 +69,7 @@ struct lndstr {
u_char lnd_fuel; /* How much fuel do we have */
u_char lnd_nxlight; /* How many xlight planes on board? */
int lnd_rflags; /* When do I retreat? */
s_char lnd_rpath[RET_LEN]; /* retreat path */
char lnd_rpath[RET_LEN]; /* retreat path */
u_char lnd_rad_max; /* max radius for this unit */
u_char lnd_scar; /* how experienced the unit is (not used) */
short lnd_item[I_MAX+1]; /* amount of items on board */