fixed transwall coloring inconsistencies

This commit is contained in:
Zeno Rogue 2019-07-25 23:08:04 +02:00
parent 31ab7e63d7
commit 9326b9594b
1 changed files with 2 additions and 2 deletions

View File

@ -4399,7 +4399,7 @@ int get_darkval(int d) {
const int darkval_e14[14] = {0,0,0,4,6,4,6,0,0,0,6,4,6,4};
const int darkval_hh[14] = {0,0,0,1,1,1,2,2,2,3,3,3,1,0};
const int darkval_hrec[7] = {0,0,2,4,2,4,0};
const int darkval_sol[8] = {0,2,4,5,0,2,4,5};
const int darkval_sol[8] = {0,2,4,4,0,2,4,4};
const int darkval_penrose[12] = {0, 2, 0, 2, 4, 4, 6, 6, 6, 6, 6, 6};
if(sphere) return darkval_s12[d];
if(euclid && S7 == 6) return darkval_e6[d];
@ -4408,10 +4408,10 @@ int get_darkval(int d) {
if(geometry == gHoroHex) return darkval_hh[d];
if(geometry == gHoroRec) return darkval_hrec[d];
if(penrose) return darkval_penrose[d];
if(sol) return darkval_sol[d];
if(binarytiling) return darkval_hbt[d];
if(hyperbolic && S7 == 6) return darkval_e6[d];
if(hyperbolic && S7 == 12) return darkval_s12[d];
if(sol) return darkval_sol[d];
return 0;
}