diff options
| author | Simon Tatham <anakin@pobox.com> | 2009-06-21 13:28:43 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2009-06-21 13:28:43 +0000 |
| commit | 767ec240093fd8f9528bd8636e93c49708bd7a35 (patch) | |
| tree | 4c679ea840e4944aa18490c65f3865f62a4e3f91 /tents.c | |
| parent | 4ecc4f92d8c385e5bfed23c99018571a28c9711b (diff) | |
| download | puzzles-767ec240093fd8f9528bd8636e93c49708bd7a35.zip puzzles-767ec240093fd8f9528bd8636e93c49708bd7a35.tar.gz puzzles-767ec240093fd8f9528bd8636e93c49708bd7a35.tar.bz2 puzzles-767ec240093fd8f9528bd8636e93c49708bd7a35.tar.xz | |
Patch from Mark Wooding: one-pixel fix to the alignment of the
bottom and right edges of the Tents keyboard cursor.
[originally from svn r8598]
Diffstat (limited to 'tents.c')
| -rw-r--r-- | tents.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1954,7 +1954,8 @@ static void draw_tile(drawing *dr, game_drawstate *ds, if (cur) { int coff = TILESIZE/8; draw_rect_outline(dr, tx + coff, ty + coff, - TILESIZE - coff*2, TILESIZE - coff*2, COL_GRID); + TILESIZE - coff*2 + 1, TILESIZE - coff*2 + 1, + COL_GRID); } unclip(dr); |