diff options
| author | Simon Tatham <anakin@pobox.com> | 2009-07-01 22:01:21 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2009-07-01 22:01:21 +0000 |
| commit | cfdba00313386042c38460def6fe141b252858fe (patch) | |
| tree | 28e6a53dd57a145cd175bb6d0697c7459d15a5cb /pattern.c | |
| parent | 652f03a8aefa3267bd0acad64eadcdcd23cdf507 (diff) | |
| download | puzzles-cfdba00313386042c38460def6fe141b252858fe.zip puzzles-cfdba00313386042c38460def6fe141b252858fe.tar.gz puzzles-cfdba00313386042c38460def6fe141b252858fe.tar.bz2 puzzles-cfdba00313386042c38460def6fe141b252858fe.tar.xz | |
More defensive-coding fixes from James H.
[originally from svn r8605]
Diffstat (limited to 'pattern.c')
| -rw-r--r-- | pattern.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1045,6 +1045,7 @@ static game_drawstate *game_new_drawstate(drawing *dr, game_state *state) ds->visible = snewn(ds->w * ds->h, unsigned char); ds->tilesize = 0; /* not decided yet */ memset(ds->visible, 255, ds->w * ds->h); + ds->cur_x = ds->cur_y = 0; return ds; } |