mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-15 20:48:00 +01:00
fix bug checking crosschecks with more than 32 tiles.
This commit is contained in:
parent
fbe6da0ecd
commit
4cfe07923d
1 changed files with 1 additions and 1 deletions
|
@ -946,7 +946,7 @@ extendRight( EngineCtxt* engine, Tile* tiles, XP_U16 tileLength,
|
||||||
check = engine->rowChecks[col].bits[1];
|
check = engine->rowChecks[col].bits[1];
|
||||||
advanced = XP_TRUE;
|
advanced = XP_TRUE;
|
||||||
}
|
}
|
||||||
contains = (check & (1L << (tile>>5))) != 0;
|
contains = (check & (1L << (tile-32))) != 0;
|
||||||
} else {
|
} else {
|
||||||
contains = (check & (1L << tile)) != 0;
|
contains = (check & (1L << tile)) != 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue