1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-13 12:17:10 +00:00

3d:: depthtest disabled for PPR::SUPERLINE and beyond

This commit is contained in:
?
2019-02-27 01:16:07 +01:00
committed by Zeno Rogue
parent 4e6a50f425
commit aac03e72fe
3 changed files with 6 additions and 4 deletions

View File

@@ -5364,7 +5364,7 @@ void queuecircleat(cell *c, double rad, color_t col) {
dynamicval<color_t> p(poly_outline, col);
for(int i=0; i<c->type; i++) {
if(binarytiling && i < 4) continue;
queuepolyat(gmatrix[c], shBinaryWall[i], 0, PPR::LINE);
queuepolyat(gmatrix[c], shBinaryWall[i], 0, PPR::SUPERLINE);
}
return;
}