Remove some comments that are no longer valid.

This commit is contained in:
Markus Armbruster 2003-11-09 10:45:26 +00:00
parent 291e538045
commit 6f0c5c6315

View file

@ -90,7 +90,6 @@ getrejects(natid them, struct natstr *np)
ind = them / 4; ind = them / 4;
shift = 12 - ((them - ((them / 4) << 2)) * 4); shift = 12 - ((them - ((them / 4) << 2)) * 4);
/* the 07 should *really* be 017 */
reject = (np->nat_rejects[ind] >> shift) & 0x0f; reject = (np->nat_rejects[ind] >> shift) & 0x0f;
return reject; return reject;
} }
@ -138,7 +137,6 @@ putreject(struct natstr *np, natid them, int how, int what)
int newrej; int newrej;
int ind; int ind;
/* This 07 should be changed to 017 after the current game is over */
what &= 0x0f; what &= 0x0f;
ind = them / 4; ind = them / 4;
shift = 12 - ((them - ((them / 4) << 2)) * 4); shift = 12 - ((them - ((them / 4) << 2)) * 4);