1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 00:47:40 +00:00

fixed the lines in the svg screenshots

This commit is contained in:
Zeno Rogue
2018-08-01 11:25:07 +02:00
parent 8a231d8269
commit a50169e3d3
4 changed files with 24 additions and 22 deletions

View File

@@ -1583,7 +1583,7 @@ extern bool nonbitrunc;
namespace svg {
void circle(int x, int y, int size, int col);
void polygon(int *polyx, int *polyy, int polyi, int col, int outline, double minwidth);
void polygon(int *polyx, int *polyy, int polyi, int col, int outline, double linewidth);
void text(int x, int y, int size, const string& str, bool frame, int col, int align);
extern bool in;
extern const string *link;
@@ -2359,7 +2359,7 @@ struct qpoly {
const vector<glvertex> *tab;
int offset, cnt;
int outline;
double minwidth;
double linewidth;
int flags;
textureinfo *tinf;
};