remove unused variable

This commit is contained in:
ehouse 2004-06-24 05:19:52 +00:00
parent b084fa57c8
commit 3f3f9541b3

View file

@ -320,13 +320,12 @@ handlePenDownInTray( BoardCtxt* board, XP_U16 x, XP_U16 y )
XP_Bool
handlePenUpTray( BoardCtxt* board, XP_U16 x, XP_U16 y )
{
XP_Bool result;
XP_Bool result = XP_FALSE;
XP_Bool ignore;
XP_S16 index = pointToTileIndex( board, x, y, &ignore );
if ( index >= 0 ) {
XP_U16 selPlayer = board->selPlayer;
TileBit newIndex = 1 << index;
BoardArrow* arrow = &board->boardArrow[selPlayer];
if ( arrow->visible ) {