1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 10:49:58 +00:00

gp:: no more using football-colorable graphics for R'Lyeh etc. on a4

This commit is contained in:
Zeno Rogue 2018-07-10 18:29:31 +02:00
parent 6c02c9879a
commit c0d2a1cad6

View File

@ -6,7 +6,7 @@ namespace hr {
int gp_threecolor() { int gp_threecolor() {
if(!gp::on) return 0; if(!gp::on) return 0;
if((gp::param.first - gp::param.second) % 3 == 0) return 2; if(S3 == 3 && (gp::param.first - gp::param.second) % 3 == 0) return 2;
return 1; return 1;
} }