mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-07-07 03:52:48 +00:00
inHighQual does not draw pixels for some reason
This commit is contained in:
parent
fedcd95708
commit
90393f8c99
@ -688,6 +688,18 @@ void draw_ncee() {
|
|||||||
(fmap[y][x] == '1' && show_mgrid && show_mapping) ? 0x404040FF : typecols[fmap[y][x] - '0'], PPR::LINE);
|
(fmap[y][x] == '1' && show_mgrid && show_mapping) ? 0x404040FF : typecols[fmap[y][x] - '0'], PPR::LINE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(inhighQual) for(int x=0; x<X; x++) for(int y=0; y<Y; y++) {
|
||||||
|
curvepoint(h(x,y));
|
||||||
|
curvepoint(h(x,y+1));
|
||||||
|
curvepoint(h(x+1,y+1));
|
||||||
|
curvepoint(h(x+1,y));
|
||||||
|
queuecurve(0,
|
||||||
|
typecols[fmap[y][x] - '0'], PPR::LINE);
|
||||||
|
}
|
||||||
|
|
||||||
|
quickqueue();
|
||||||
|
initquickqueue();
|
||||||
|
|
||||||
nctinf.texture_id = rug::glbuf->renderedTexture;
|
nctinf.texture_id = rug::glbuf->renderedTexture;
|
||||||
nctinf.tvertices.clear();
|
nctinf.tvertices.clear();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user