From 19c70ccdcb6d4faaf79692d0f0ebd1da8578e6fd Mon Sep 17 00:00:00 2001 From: Eric House Date: Mon, 6 Jan 2014 06:54:56 -0800 Subject: [PATCH] fix mistaken scoreboard size calc --- xwords4/linux/cursesmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/linux/cursesmain.c b/xwords4/linux/cursesmain.c index 62bee07bd..c9970a4cc 100644 --- a/xwords4/linux/cursesmain.c +++ b/xwords4/linux/cursesmain.c @@ -1638,7 +1638,7 @@ positionSizeStuff( CursesAppGlobals* globals, int width, int height ) board_figureLayout( board, cGlobals->gi, 0, 0, width, height, 150, 200, /* percents */ - width*100/75, 2, 1, + width*75/100, 2, 1, XP_FALSE, &dims ); board_applyLayout( board, &dims );