In files.c I noticed
Just wondering why that isn't
[EDIT] Never mind, I suppose it's so that things like
are more understandable.
Code:
u32b f[4] = {0, 0, 0, 0}; ... object_flags_known(o_ptr, &f[1], &f[2], &f[3]);
Code:
u32b f[3] = {0, 0, 0}; ... object_flags_known(o_ptr, &f[0], &f[1], &f[2]);
[EDIT] Never mind, I suppose it's so that things like
Code:
f[1] |= (TR1_INFRA);
Comment