mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-16 15:41:16 +01:00
Cleanup: compile warning and to make logging easier.
This commit is contained in:
parent
b1d4a800c8
commit
c0b515457b
2 changed files with 9 additions and 3 deletions
|
@ -2810,12 +2810,16 @@ board_handleKeyUp( BoardCtxt* board, XP_Key key, XP_Bool* pHandled )
|
|||
XP_Bool
|
||||
board_handleKey( BoardCtxt* board, XP_Key key, XP_Bool* handled )
|
||||
{
|
||||
XP_Bool handled1, handled2;
|
||||
XP_Bool draw = board_handleKeyDown( board, key, &handled1 );
|
||||
XP_Bool handled1;
|
||||
XP_Bool handled2;
|
||||
XP_Bool draw;
|
||||
|
||||
draw = board_handleKeyDown( board, key, &handled1 );
|
||||
draw = board_handleKeyUp( board, key, &handled2 ) || draw;
|
||||
*handled = handled1 || handled2;
|
||||
|
||||
return draw;
|
||||
}
|
||||
} /* board_handleKey */
|
||||
#endif /* KEY_SUPPORT */
|
||||
|
||||
#ifdef KEYBOARD_NAV
|
||||
|
|
|
@ -720,7 +720,9 @@ sendMsg( CommsCtxt* comms, MsgQueueElem* elem )
|
|||
{
|
||||
XP_S16 result = 0;
|
||||
XP_PlayerAddr channelNo;
|
||||
#if defined XWFEATURE_RELAY || defined XWFEATURE_BLUETOOTH
|
||||
CommsConnType conType = comms_getConType( comms );
|
||||
#endif
|
||||
|
||||
channelNo = elem->channelNo;
|
||||
|
||||
|
|
Loading…
Reference in a new issue