Patch from Chris Boyle to prevent Solo's inter-block dividing lines

from becoming indistinguishable from the intra-block ones at low
tile sizes.

[originally from svn r8259]
This commit is contained in:
Simon Tatham
2008-11-02 14:29:41 +00:00
parent 808495cb41
commit a35c660284

2
solo.c
View File

@ -110,7 +110,7 @@ typedef unsigned char digit;
#define PREFERRED_TILE_SIZE 32 #define PREFERRED_TILE_SIZE 32
#define TILE_SIZE (ds->tilesize) #define TILE_SIZE (ds->tilesize)
#define BORDER (TILE_SIZE / 2) #define BORDER (TILE_SIZE / 2)
#define GRIDEXTRA (TILE_SIZE / 32) #define GRIDEXTRA max((TILE_SIZE / 32),1)
#define FLASH_TIME 0.4F #define FLASH_TIME 0.4F