mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-26 07:58:52 +01:00
fix compiler warning
This commit is contained in:
parent
3c0c7be7f5
commit
68e2975472
2 changed files with 5 additions and 2 deletions
|
@ -1398,8 +1398,9 @@ fetchTiles( ServerCtxt* server, XP_U16 playerNum, XP_U16 nToFetch,
|
|||
nLeft * sizeof(resultTiles->tiles[0]) );
|
||||
nSoFar += nLeft;
|
||||
}
|
||||
|
||||
resultTiles->nTiles = nSoFar;
|
||||
|
||||
XP_ASSERT( nSoFar < 0x00FF );
|
||||
resultTiles->nTiles = (XP_U8)nSoFar;
|
||||
} /* fetchTiles */
|
||||
|
||||
static void
|
||||
|
|
|
@ -398,7 +398,9 @@ GameInfo(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
|||
CEAppGlobals* globals;
|
||||
XP_U16 id;
|
||||
GameInfoState* giState;
|
||||
#ifndef XWFEATURE_STANDALONE_ONLY
|
||||
XP_Bool on;
|
||||
#endif
|
||||
|
||||
if ( message == WM_INITDIALOG ) {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue