about summary refs log tree commit diff stats
path: root/ext
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-24 13:08:27 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-24 13:08:27 -0500
commit3eb639344c31ecc821c3d5c4151915c107f9bc38 (patch)
tree6fab98d3b87aa0c90bb12e119c17f766efdd465f /ext
parent01dac5c37a8290b2f626175b910285390e2fe3a2 (diff)
downloadwittle-3eb639344c31ecc821c3d5c4151915c107f9bc38.tar.gz
wittle-3eb639344c31ecc821c3d5c4151915c107f9bc38.tar.bz2
wittle-3eb639344c31ecc821c3d5c4151915c107f9bc38.zip
fix double eraser bug
Diffstat (limited to 'ext')
-rw-r--r--ext/wittle_generator/Generate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wittle_generator/Generate.cpp b/ext/wittle_generator/Generate.cpp index a5c0af9..b80b751 100644 --- a/ext/wittle_generator/Generate.cpp +++ b/ext/wittle_generator/Generate.cpp
@@ -509,7 +509,7 @@ bool Generate::generateInternal(int width, int height, PuzzleSymbols symbols) {
509 setSymbol(Decoration::Gap_Row, _panel->width() - 2, _panel->height() - 1); 509 setSymbol(Decoration::Gap_Row, _panel->width() - 2, _panel->height() - 1);
510 _splitPoints = {Point(1, 1), 510 _splitPoints = {Point(1, 1),
511 Point(_panel->width() - 2, _panel->height() - 2)}; 511 Point(_panel->width() - 2, _panel->height() - 2)};
512 // initPanel(id); // Re-initing to account for the newly added information 512 initPanel(); // Re-initing to account for the newly added information
513 } 513 }
514 514
515 // Init parity for full dot puzzles 515 // Init parity for full dot puzzles