1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00

rogueviz:: graphs:: do not display images if shift held

This commit is contained in:
Zeno Rogue 2024-08-01 12:47:43 +02:00
parent b49266cbce
commit d1ebc3baae

View File

@ -407,7 +407,7 @@ void queuedisk(const shiftmatrix& V, const colorpair& cp, bool legend, const str
poly_outline = (bordcolor << 8) | 0xFF; poly_outline = (bordcolor << 8) | 0xFF;
#if CAP_TEXTURE #if CAP_TEXTURE
if(cp.img) { if(cp.img && !anyshiftclick) {
for(hyperpoint h: cp.img->vertices) for(hyperpoint h: cp.img->vertices)
curvepoint(h); curvepoint(h);
auto V1 = V; V1.T = rgpushxto0(V.T * C0); auto V1 = V; V1.T = rgpushxto0(V.T * C0);