GNOME Bugzilla – Bug 661307
GetMultiOptionsExpression doesn't allow for questions with 8 options
Last modified: 2011-10-15 17:10:28 UTC
GameAnswer.GetMultiOptionsExpression() returns "[ABCDEFG]", causing "H" to be rejected as a possible answer. This can sometimes be observed in PuzzleBuildTriangle. It looks like this: for (int i = 0; i < MAX_POSSIBLE_ANSWER; i++) should be: for (int i = 0; i <= MAX_POSSIBLE_ANSWER; i++)
Thanks for the bug report It was really usefull I have just fixed in HEAD http://git.gnome.org/browse/gbrainy Thanks, Jordi,