mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-16 15:41:16 +01:00
cast to stop warning on wince
This commit is contained in:
parent
c24a8ca79b
commit
74087bd5b7
1 changed files with 1 additions and 1 deletions
|
@ -1080,7 +1080,7 @@ considerScoreWordHasBlanks( EngineCtxt* engine, XP_U16 blanksLeft,
|
|||
|
||||
--blanksLeft;
|
||||
XP_ASSERT( engine->blankValues[blanksLeft] < 128 );
|
||||
bTile = engine->blankValues[blanksLeft];
|
||||
bTile = (Tile)engine->blankValues[blanksLeft];
|
||||
bt = &usedBlanks[usedBlanksCount++];
|
||||
|
||||
/* for each letter for which the blank might be standing in... */
|
||||
|
|
Loading…
Reference in a new issue