mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
don't try to draw with null dctx
This commit is contained in:
parent
3bfcc0cedd
commit
88af10552e
1 changed files with 1 additions and 1 deletions
|
@ -624,7 +624,7 @@ drawTradeWindowIf( BoardCtxt* board )
|
|||
XP_Bool
|
||||
board_draw( BoardCtxt* board )
|
||||
{
|
||||
if ( board->boardBounds.width > 0 ) {
|
||||
if ( !!board->draw && board->boardBounds.width > 0 ) {
|
||||
|
||||
drawScoreBoard( board );
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue