1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-04 13:19:20 +00:00

fixed actualV in penrose

This commit is contained in:
Zeno Rogue 2019-08-02 17:55:40 +02:00
parent 96e160df78
commit 0be99b931f

View File

@ -879,6 +879,7 @@ transmatrix actualV(const heptspin& hs, const transmatrix& V) {
#if CAP_BT
if(binarytiling) return V;
#endif
if(penrose) return V;
return (hs.spin || !BITRUNCATED) ? V * spin(hs.spin*2*M_PI/S7 + master_to_c7_angle()) : V;
}