From: Simon Tatham Date: Tue, 11 May 2004 23:22:08 +0000 (+0000) Subject: Missing draw_update call. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=3ccdce2f6cfa3b608ad454cc324f447e65a61232;p=sgt-puzzles.git Missing draw_update call. [originally from svn r4216] --- diff --git a/rect.c b/rect.c index 846811e..35d7c25 100644 --- a/rect.c +++ b/rect.c @@ -1222,6 +1222,9 @@ void game_redraw(frontend *fe, game_drawstate *ds, game_state *oldstate, draw_rect(fe, COORD(0)-1, COORD(0)-1, ds->w*TILE_SIZE+3, ds->h*TILE_SIZE+3, COL_LINE); ds->started = TRUE; + draw_update(fe, 0, 0, + state->w * TILE_SIZE + 2*BORDER + 1, + state->h * TILE_SIZE + 2*BORDER + 1); } for (x = 0; x < state->w; x++)