Rationalize names of structure array sizes.

Everything that camn be #define become one, in all caps to signify that
it's a constant.
This commit is contained in:
Eric S. Raymond 2017-06-24 09:55:32 -04:00
parent 07207420a2
commit 985137d9c7
5 changed files with 21 additions and 24 deletions

View file

@ -72,8 +72,8 @@ struct game_t {
long fixed[NOBJECTS + 1];
long link[NOBJECTS * 2 + 1];
long place[NOBJECTS + 1];
long hinted[HINT_COUNT];
long hintlc[HINT_COUNT];
long hinted[NHINTS];
long hintlc[NHINTS];
long prop[NOBJECTS + 1];
};