From 18023ecab3c16aaa8eb7f9e5cb0ba7d08222a402 Mon Sep 17 00:00:00 2001 From: ehouse Date: Thu, 24 Jun 2004 05:19:52 +0000 Subject: [PATCH] remove unused variable --- xwords4/common/tray.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xwords4/common/tray.c b/xwords4/common/tray.c index 8ae66ad8b..b1ed92700 100644 --- a/xwords4/common/tray.c +++ b/xwords4/common/tray.c @@ -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 ) {