mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
inHighQual does not draw pixels for some reason
This commit is contained in:
parent
fedcd95708
commit
90393f8c99
@ -687,6 +687,18 @@ void draw_ncee() {
|
||||
#endif
|
||||
(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.tvertices.clear();
|
||||
|
Loading…
Reference in New Issue
Block a user