mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 16:05:44 -07:00
16-bit cleanliness patch from James H.
[originally from svn r8803]
This commit is contained in:
4
keen.c
4
keen.c
@ -281,8 +281,8 @@ static int solver_common(struct latin_solver *solver, void *vctx, int diff)
|
||||
for (box = 0; box < ctx->nboxes; box++) {
|
||||
int *sq = ctx->boxlist + ctx->boxes[box];
|
||||
int n = ctx->boxes[box+1] - ctx->boxes[box];
|
||||
int value = ctx->clues[box] & ~CMASK;
|
||||
int op = ctx->clues[box] & CMASK;
|
||||
long value = ctx->clues[box] & ~CMASK;
|
||||
long op = ctx->clues[box] & CMASK;
|
||||
|
||||
if (diff == DIFF_HARD) {
|
||||
for (i = 0; i < n; i++)
|
||||
|
Reference in New Issue
Block a user