1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-24 06:03:23 +00:00

fixed lines

This commit is contained in:
Zeno Rogue 2018-02-11 23:30:19 +01:00
parent 42cb45e720
commit b75f3e5575

View File

@ -639,7 +639,7 @@ void prettyline(hyperpoint h1, hyperpoint h2, int col, int lev) {
pp.V = Id;
pp.tab = &prettylinepoints;
pp.offset = 0;
pp.cnt = size(prettylinepoints)/3;
pp.cnt = size(prettylinepoints);
pp.minwidth = minwidth_global;
p.col = 0;
pp.outline = col;
@ -658,7 +658,7 @@ void prettypoly(const vector<hyperpoint>& t, int fillcol, int linecol, int lev)
pp.V = Id;
pp.tab = &prettylinepoints;
pp.offset = 0;
pp.cnt = size(prettylinepoints)/3;
pp.cnt = size(prettylinepoints);
pp.minwidth = minwidth_global;
p.col = fillcol;
pp.outline = linecol;