Missing draw_update call.

[originally from svn r4216]
This commit is contained in:
Simon Tatham
2004-05-11 23:22:08 +00:00
parent 97493ac8d1
commit 3ccdce2f6c

3
rect.c
View File

@ -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++)