Fixed an issue with a non-boolean variable in DBtiles.c being
cast as "bool", causing issues with the proper/strict use of the "bool" type. Changed the version back so that it will update the github mirror tonight, since the current version appears to be working.
This commit is contained in:
parent
43bc006338
commit
9fe7bf4ab7
|
|
@ -111,7 +111,7 @@ DBSrPaintNMArea(hintTile, plane, ttype, rect, mask, func, arg)
|
|||
TileType tpt;
|
||||
int rheight, rwidth, rmax;
|
||||
dlong f1, f2, f3, f4;
|
||||
bool ignore_sides;
|
||||
int ignore_sides;
|
||||
|
||||
/* If the search area is not diagonal, return the result of the */
|
||||
/* standard (manhattan) search function. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue