mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
fix cast
This commit is contained in:
parent
8e5f3cb7b7
commit
93b39af1f2
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ setBlankTile( DictionaryCtxt* dctx )
|
|||
|
||||
for ( i = 0; i < dctx->nFaces; ++i ) {
|
||||
if ( dctx->faces16[i] == 0 ) {
|
||||
dctx->blankTile = (XP_U8)i;
|
||||
dctx->blankTile = (XP_S8)i;
|
||||
XP_LOGF( "blank tile index: %d", i );
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue