mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-17 06:07:12 +00:00
inHighQual does not draw pixels for some reason
This commit is contained in:
@@ -687,6 +687,18 @@ void draw_ncee() {
|
|||||||
#endif
|
#endif
|
||||||
(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();
|
||||||
|
|||||||
Reference in New Issue
Block a user