From bf5e0dafc03b98790e5f03383e68f18c487fea7d Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 7 Apr 2012 22:19:18 +0000 Subject: [PATCH] Fix redundant redrawing in Pegs. Apparently it has always redrawn every single peg and hole on the board, every time it did any kind of redraw at all, because I forgot to update the array in the drawstate indicating the last-drawn state of each position. And nobody's noticed until now! git-svn-id: svn://svn.tartarus.org/sgt/puzzles@9447 cda61777-01e9-0310-a592-d414129be87e --- pegs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pegs.c b/pegs.c index 4daa55f..d77860c 100644 --- a/pegs.c +++ b/pegs.c @@ -1237,6 +1237,7 @@ static void game_redraw(drawing *dr, game_drawstate *ds, game_state *oldstate, (bgcolour != ds->bgcolour || /* always redraw when flashing */ v != ds->grid[y*w+x])) { draw_tile(dr, ds, COORD(x), COORD(y), v, bgcolour); + ds->grid[y*w+x] = v; } } -- 2.11.0