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 /blackbox.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 'blackbox.c')
| -rw-r--r-- | blackbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1302,7 +1302,7 @@ static void draw_laser_tile(drawing *dr, game_state *gs, game_drawstate *ds, draw_rect_outline(dr, dx, dy, TILE_SIZE, TILE_SIZE, COL_GRID); if (gs_tile &~ (LASER_WRONG | LASER_OMITTED | FLAG_CURSOR)) { - char str[10]; + char str[32]; int tcol = flash ? COL_FLASHTEXT : omitted ? COL_WRONG : COL_TEXT; if (reflect || hit) |