ref: 3ccdce2f6cfa3b608ad454cc324f447e65a61232
parent: 97493ac8d14a4101a3ee2d261b670c48bcb0f4f7
author: Simon Tatham <anakin@pobox.com>
date: Tue May 11 19:22:08 EDT 2004
Missing draw_update call. [originally from svn r4216]
--- a/rect.c
+++ b/rect.c
@@ -1222,6 +1222,9 @@
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++)