Rationalize attack logic

Fix the compiler warnings about bunching ands with ors
This commit is contained in:
NHOrus 2017-07-02 19:41:57 +03:00
parent 346bcf9458
commit 8456b866ff
2 changed files with 49 additions and 27 deletions

2
misc.c
View file

@ -652,7 +652,7 @@ void set_seed(long seedval)
/* Set the LCG seed */
{
game.lcg_x = (unsigned long) seedval % game.lcg_m;
// once seed is set, we need to generate the Z`ZZZ word
make_zzword(game.zzword);
}