mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-28 07:58:08 +01:00
fix assertion failure by passing max size not < actual size
This commit is contained in:
parent
d98b2ad5d6
commit
08ad0bdfa5
1 changed files with 1 additions and 1 deletions
|
@ -1382,7 +1382,7 @@ positionSizeStuff( CursesAppGlobals* globals, int width, int height )
|
|||
cellHt = CURSES_CELL_HT;
|
||||
board_setPos( board, BOARD_OFFSET, BOARD_OFFSET,
|
||||
cellWidth * MAX_COLS, cellHt * MAX_ROWS,
|
||||
cellHt, XP_FALSE );
|
||||
cellWidth, XP_FALSE );
|
||||
/* board_setScale( board, cellWidth, cellHt ); */
|
||||
scoreLeft = (cellWidth * MAX_COLS);// + BOARD_SCORE_PADDING;
|
||||
remWidth -= cellWidth * MAX_COLS;
|
||||
|
|
Loading…
Add table
Reference in a new issue