(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

@ -62,11 +62,11 @@ struct natstr {
natid nat_cnum; /* our country number */
/* end of part matching struct genitem */
s_char nat_stat; /* inuse, norm, god, abs */
s_char nat_cnam[20]; /* country name */
s_char nat_pnam[20]; /* representative */
s_char nat_hostaddr[32]; /* host addr of last user */
s_char nat_hostname[512]; /* hostname of last user */
s_char nat_userid[32]; /* userid of last user */
char nat_cnam[20]; /* country name */
char nat_pnam[20]; /* representative */
char nat_hostaddr[32]; /* host addr of last user */
char nat_hostname[512]; /* hostname of last user */
char nat_userid[32]; /* userid of last user */
coord nat_xstart, nat_ystart; /* cap location at start */
coord nat_xcap, nat_ycap; /* cap location in abs coords */
coord nat_xorg, nat_yorg; /* origin location in abs coords */