diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-05-11 23:22:08 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-05-11 23:22:08 +0000 |
| commit | 3ccdce2f6cfa3b608ad454cc324f447e65a61232 (patch) | |
| tree | af4627e34d2fe29aeaa4c5ea5b9d27e6e50f0f42 /rect.c | |
| parent | 97493ac8d14a4101a3ee2d261b670c48bcb0f4f7 (diff) | |
| download | puzzles-3ccdce2f6cfa3b608ad454cc324f447e65a61232.zip puzzles-3ccdce2f6cfa3b608ad454cc324f447e65a61232.tar.gz puzzles-3ccdce2f6cfa3b608ad454cc324f447e65a61232.tar.bz2 puzzles-3ccdce2f6cfa3b608ad454cc324f447e65a61232.tar.xz | |
Missing draw_update call.
[originally from svn r4216]
Diffstat (limited to 'rect.c')
| -rw-r--r-- | rect.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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++) |