diff options
| author | Simon Tatham <anakin@pobox.com> | 2009-12-17 18:20:32 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2009-12-17 18:20:32 +0000 |
| commit | 8628a0630c16bc01c1370a6cb15412dd27c33332 (patch) | |
| tree | 5ef85bea48b9692483b3f0f09b4f29b657e19805 /bridges.c | |
| parent | 97477f0916bd6aa9a746310e9566158d389b82d5 (diff) | |
| download | puzzles-8628a0630c16bc01c1370a6cb15412dd27c33332.zip puzzles-8628a0630c16bc01c1370a6cb15412dd27c33332.tar.gz puzzles-8628a0630c16bc01c1370a6cb15412dd27c33332.tar.bz2 puzzles-8628a0630c16bc01c1370a6cb15412dd27c33332.tar.xz | |
Minor bug fixes from James Harvey.
[originally from svn r8785]
Diffstat (limited to 'bridges.c')
| -rw-r--r-- | bridges.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2479,7 +2479,7 @@ static void dsf_debug_draw(drawing *dr, #ifdef DRAW_DSF int ts = TILE_SIZE/2; int ox = COORD(x) + ts/2, oy = COORD(y) + ts/2; - char str[10]; + char str[32]; sprintf(str, "%d", dsf_canonify(state->solver->dsf, DINDEX(x,y))); draw_text(dr, ox, oy, FONT_VARIABLE, ts, @@ -2556,7 +2556,7 @@ static void island_redraw(drawing *dr, int col = (v & G_ISSEL) ? COL_SELECTED : tcol; int bg = (v & G_CURSOR) ? COL_CURSOR : (v & G_MARK) ? COL_MARK : COL_BACKGROUND; - char str[10]; + char str[32]; #ifdef DRAW_GRID draw_rect_outline(dr, COORD(is->x), COORD(is->y), @@ -2759,7 +2759,7 @@ static void game_print(drawing *dr, game_state *state, int ts) /* Islands */ for (i = 0; i < state->n_islands; i++) { - char str[10]; + char str[32]; struct island *is = &state->islands[i]; grid = GRID(state, is->x, is->y); cx = COORD(is->x) + ts/2; |