diff options
| author | Simon Tatham <anakin@pobox.com> | 2006-02-19 12:42:46 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2006-02-19 12:42:46 +0000 |
| commit | 9a59d8a45a3d46af8d1eddb4a2c8b5c03d49119b (patch) | |
| tree | 90fbdadb562a3cfbad80bcc358522c40c80bd528 | |
| parent | c5001ca751641b341b90913ba67c9138923ab759 (diff) | |
| download | puzzles-9a59d8a45a3d46af8d1eddb4a2c8b5c03d49119b.zip puzzles-9a59d8a45a3d46af8d1eddb4a2c8b5c03d49119b.tar.gz puzzles-9a59d8a45a3d46af8d1eddb4a2c8b5c03d49119b.tar.bz2 puzzles-9a59d8a45a3d46af8d1eddb4a2c8b5c03d49119b.tar.xz | |
Patch from Phil Bordelon to improve Bridges' appearance by adjusting
the font size.
[originally from svn r6573]
| -rw-r--r-- | bridges.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2401,9 +2401,9 @@ static void lines_redraw(drawing *dr, draw_update(dr, ox, oy, TILE_SIZE, TILE_SIZE); } -#define ISLAND_RADIUS ((TILE_SIZE*13)/20) +#define ISLAND_RADIUS ((TILE_SIZE*12)/20) #define ISLAND_NUMSIZE(is) \ - (((is)->count < 10) ? TILE_SIZE : (TILE_SIZE*8)/10) + (((is)->count < 10) ? (TILE_SIZE*7)/10 : (TILE_SIZE*5)/10) static void island_redraw(drawing *dr, game_state *state, game_drawstate *ds, |