Made maximum rows more limited to avoid bugs
This commit is contained in:
parent
214112ad17
commit
72a56a15d7
2 changed files with 7 additions and 7 deletions
|
|
@ -114,7 +114,7 @@ int main( int argc, char *argv[] ){
|
|||
"\n"
|
||||
" -o file --output file Ouput moves taken in game to file\n"
|
||||
"\n"
|
||||
" --slow-calcwins Use the 32bit reference implementation of calcWins()\n"
|
||||
" --slow-calcwins Use the reference implementation of calcWins()\n"
|
||||
" --random-moves Play random moves instead of asking for input\n"
|
||||
);
|
||||
return 0;
|
||||
|
|
@ -150,7 +150,7 @@ int main( int argc, char *argv[] ){
|
|||
fprintf( stderr, "ERR: AMOUT OF ROWS MUST BE AT LEAST 1\n" );
|
||||
return -1;
|
||||
}
|
||||
#define ROWOVERFLOW (rowsint_t)( sizeof(column_t) * CHAR_BIT )
|
||||
#define ROWOVERFLOW (rowsint_t)( sizeof(column_t) * CHAR_BIT - 1 )
|
||||
if( playboard.rows >= ROWOVERFLOW ){
|
||||
fprintf( stderr,
|
||||
"ERR: AMOUT OF ROWS MUST BE LESS THAN %d\n", ROWOVERFLOW
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue