We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Your display options for 9 are missing one possibility: 5+2+1+1 :-) I believe it should look like this in your code:
case 9: switch(random(3)) { case 0: bits[0]|=offset; bits[3]|=offset; bits[4]|=offset; break; case 1: bits[1]|=offset; bits[3]|=offset; bits[4]|=offset; break; case 2: bits[0]|=offset; bits[1]|=offset; bits[2]|=offset; bits[4]|=offset; break; }
The text was updated successfully, but these errors were encountered:
fix for issue pchretien#3 - missing option for 9
7cb5544
One of the permutations for representing 9 was missing.
No branches or pull requests
Your display options for 9 are missing one possibility: 5+2+1+1 :-)
I believe it should look like this in your code:
The text was updated successfully, but these errors were encountered: