SVN commit 906421 by coolo: avoid a mismatch between solver and game rules BUG: 178972 M +2 -0 fortyeight.cpp --- trunk/KDE/kdegames/kpat/patsolve/fortyeight.cpp #906420:906421 @@ -339,6 +339,8 @@ if ( !Wlen[to] ) moves = 1 << ( freestores - 1 ); + moves = 1; // for now to avoid #178972 for 4.2 + if ( moves >= Wlen[w] ) moves = Wlen[w];